import tempfile
temp = tempfile.TemporaryFile('w+')
print(temp)
#write to the file
temp.write("Hello world,")
temp.write("\nWelcome to Pynerds.")
#read from the file
temp.seek(0)
for i in temp.read():
print(i, end = '')
temp.close()
import tempfile
temp = tempfile.TemporaryFile('w+')
print(temp)
#write to the file
temp.write("Hello world,")
temp.write("\nWelcome to Pynerds.")
#read from the file
temp.seek(0)
for i in temp.read():
print(i, end = '')
temp.close()