input from text file pythno code example
Example 1: python write to file
file = open(“testfile.txt”,”w”)
file.write(“Hello World”)
file.write(“This is our new text file”)
file.write(“and this is another line.”)
file.write(“Why? Because we can.”)
file.close()
Example 2: python read file
with open("file.txt", "r") as txt_file:
return txt_file.readlines()
Example 3: python save input to text file
print('My Mood Diary')
mood = input('How are you feeling today? ')
text_file = open("MoodDiary.txt", "w")
text_file.write(mood)
text_file.close()