Te doy la bienvenida a proyecto on line, aquí encontrarás la respuesta de lo que necesitas.
Ejemplo 1: guarde la salida de python en un archivo de texto
$ python my_program.py > output.txt
Ejemplo 2: python guarda la entrada en un archivo de texto
#Simple Mood Diary Script As An Example#
print('My Mood Diary')
mood = input('How are you feeling today? ')#Saves the input as the variable 'mood'#
text_file = open("MoodDiary.txt", "w")#Opens or creates the .txt file, sharing the directory of the script#
text_file.write(mood)#Writes the variable into the .txt file#
text_file.close()#Closes the .txt file#
valoraciones y reseñas
No se te olvide mostrar esta división si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)