“Python Create Temp File” Ответ

Создать временные файлы в 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 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")
Cap'n Joseph Burntbeard

Ответы похожие на “Python Create Temp File”

Вопросы похожие на “Python Create Temp File”

Больше похожих ответов на “Python Create Temp File” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования