[Tutor] moving focus away from a raw_input dialog box

Jacob S. keridee at jayco.net
Fri Oct 22 04:12:25 CEST 2004


Hi Kent.

>>> print "Thanks\n"*60

Or maybe

>>> for x in range(60):
    print "Thanks"

Possibly

>>> a = "".join(["Thanks\n"*60])
>>> print a

etc.

I didn't know about that and I like it alot!
Jacob Schmidt




More information about the Tutor mailing list