Aug-29-2017, 08:40 PM
I am trying to create a program where the code asks questions and puts it into a text file. Is there any errors here or am I missing something out
1 2 3 |
f = open ( "test.txt" , "r+" ) print (f.write( "hello" )) print (f.read()) |