Amadeo Bellotti wrote:
> Ok im trying to create a file that the user chooses the name of and 
> print a varible that is a string to the text file. but for some reason 
> whne i do this code:
>
> FILE = open(filename, "w")
> FILE.write(puzzleanswers)
> FILE.close()
>
> it doesnt write anything 
That could mean you get an empty file or you don't see the file. Which 
is it?
If the file is empty that means puzzleanswers is  empty.
If you don't see the file that means it is being written someplace other 
than where you are looking.

-- 
Bob Gailer
510-978-4454

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to