Writing to a File #Open the file object, f, for writing. f=open('C:\\Users\\computer name\\Documents\\my-text-file.txt','w')#Computer name is the name of the computer that you use. #Write the contents. f.write('Twinkle twinkle little star.\n') f.write('How I wonder what ...