python save in text file 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: open text file in python
f=open("Diabetes.txt",'r')
f.read()
Example 3: save python output to text file
$ python my_program.py > output.txt
Example 4: 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()