En Wed, 31 Jan 2007 01:08:28 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió:
> raw_input can do the job of print
> while 1: raw_input(__import__('os').urandom(6).encode('base64'))
>
> And can anyone explain why this is so?
>>>> while 1: input(__import__('os').urandom(6).encode('base64'))
> ^
> SyntaxError: unexpected EOF while parsing
input and raw_input are not the same, see the docs.
--
Gabriel Genellina
--
http://mail.python.org/mailman/listinfo/python-list
