“python faça um arquivo txt” Respostas de código

python faça um arquivo txt

file = open("text.txt", "w") 
file.write("Your text goes here") 
file.close() 
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists
Kodi4444

Escreva txt python

with open('readme.txt', 'w') as f:
    f.write('readme')
Code language: JavaScript (javascript)
Expensive Elephant

Respostas semelhantes a “python faça um arquivo txt”

Perguntas semelhantes a “python faça um arquivo txt”

Mais respostas relacionadas para “python faça um arquivo txt” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código