import tempfile
with tempfile.TemporaryFile() as fp:
name = fp.name
fp.write("Hello World!") # Write a string using fp.write()
content = fp.read() # Read the contents using fp.read()
print(f"Content of file {name}: {content}")
print("File is now deleted")