On Fri, May 2, 2008 at 11:42 AM, Paul McGuire <[EMAIL PROTECTED]> wrote:
> f=open('file.txt',r)
> print_line = False
> for line in f:
> if print_line:
> print line
> print_line = False
> if line == "3":
Don't forget about the newline...(that makes four!)
Kent
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
