Hi, suppose I am reading lines from a file or stdin. I want to just "peek" in to the next line, and if it starts with a special character I want to break out of a for loop, other wise I want to do readline().
Is there a way to do this? for example: while 1: line=stdin.peek_nextline() if not line: break if line[0]=="|": break: else: x=stdin.nextline() # do something with x thanks -- http://mail.python.org/mailman/listinfo/python-list