“Python hace un archivo txt” Código de respuesta

Python hace un archivo 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

escribir txt python

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

Respuestas similares a “Python hace un archivo txt”

Preguntas similares a “Python hace un archivo txt”

Más respuestas relacionadas con “Python hace un archivo txt” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código