how to take input from text file in python code example
Example 1: 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()
Example 2: python input text in file
First, open a text file for reading by using the open() function.
Second, read text from the text file using the file read() , readline() , or readlines() method of the file object.
Third, close the file using the file close() method.