Newbie question

Peak Allan apeak_2000 at yahoo.com
Sun Dec 23 18:32:50 EST 2001


I copied this code from one of the tutorials on the
python.org website, but when I tried to run it, I got
an error.

# Program FileTest

out_file = open("test.txt", "w")
out_file.write("This crap is going to out file\n")
out_file.close()

in_file = open("test.txt", "r")
text = in_file.read()
in_file.close()
print text

bash-2.05$ ./fileTest.py
./fileTest.py: line 3: syntax error near unexpected
token `open("'
./fileTest.py: line 3: `out_file = open("test.txt",
"w")'

Can someone please tell me what I did wrong?

Also, are the tutorials at python.org a good way to
learn Python?  If not, are there any other good online resources?

__________________________________________________
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com




More information about the Python-list mailing list