Answers for "python create temp file"

0

python create temp file

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")
Posted by: Guest on April-26-2022

Python Answers by Framework

Browse Popular Code Answers by Language