“Python Zapisz wejście do pliku tekstowego” Kod odpowiedzi

Python Zapisz wejście do pliku tekstowego

#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#
Ruukasu

Python Zapisz wejście do pliku tekstowego

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#
Combative Caribou

Odpowiedzi podobne do “Python Zapisz wejście do pliku tekstowego”

Pytania podobne do “Python Zapisz wejście do pliku tekstowego”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu