On Thu, Jul 10, 2008 at 5:08 PM, Ian Kelly <[EMAIL PROTECTED]> wrote: > from itertools import repeat > for action in repeat("I go on hold. I come off hold.", 1000): > print action > > -root
print "I go on hold. I come off hold.\n" * 1000,
On Thu, Jul 10, 2008 at 5:08 PM, Ian Kelly <[EMAIL PROTECTED]> wrote: > from itertools import repeat > for action in repeat("I go on hold. I come off hold.", 1000): > print action > > -root
print "I go on hold. I come off hold.\n" * 1000,