Why is it that when I run the following interactively

f = open('Patents-1920.txt')
line = f.readline()
while line:
     print line,
     line = f.readline()
f.close()

I get an error message

File "<stdin>", line 4
     f.close()
     ^
SyntaxError: invalid syntax

but if i run it in a script there is no error?

Thanks

Jay

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

Reply via email to