write in the file python code example
Example 1: python file open
file = open('C:\Users\yourname\files\file.txt','r')
text = file.read()
file = open('C:\Users\yourname\files\file.txt','w')
file.write('This is a typical string')
file.close()
Example 2: python how to make a file to write to
file_object = open("filename", "mode")
file_object.write("Data to be written")
file_object.close()
file_object = open("/path/to/my_filename.txt", "w")
file_object.write("Line of text to write")
file_object.close()