“Python Crie arquivo temp” Respostas de código

Crie arquivos temporários no 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 Crie arquivo 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

Respostas semelhantes a “Python Crie arquivo temp”

Perguntas semelhantes a “Python Crie arquivo temp”

Mais respostas relacionadas para “Python Crie arquivo temp” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código