On Thu, Jul 10, 2008 at 3:11 PM, comex <[EMAIL PROTECTED]> wrote:
> 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,Why, that doesn't use any iterators at all. You obviously don't know my taste in programming. ;-) -root

