TEXT FILE INTRO | 15 JULY July 13, 2026 FILE HANDLING IN PYTHON PPT LINK - FILE HANDLING PPT NOTES fout= open("text.txt","w") # new File opened for writing fout.write("This program is creating a text file\n") str="The name of the text file is text.txt" fout.write(str+"\n") fout.close() Read more