“Python Buat File Temp” Kode Jawaban

Buat file sementara di Python

import tempfile

# Creates a file and returns a tuple containing both the handle and the path.
handle, path = tempfile.mkstemp()
with open(handle, "w") as f:
    f.write("Hello, World!");
Real Raccoon

Python Buat File Temp

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")
Cap'n Joseph Burntbeard

Jawaban yang mirip dengan “Python Buat File Temp”

Pertanyaan yang mirip dengan “Python Buat File Temp”

Lebih banyak jawaban terkait untuk “Python Buat File Temp” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya