Helmut Jarausch wrote: > One step further > > try: > eval(x+'0') > ....
That is an exceedingly bad idea. Type:
__import__('sys').exit(),
in the prompt and see what happens.
You _never_ want to run `eval` on an untrusted string. Never.
--
Erik Max Francis && [EMAIL PROTECTED] && http://www.alcyone.com/max/
San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis
Divorces are made in Heaven.
-- Oscar Wilde
--
http://mail.python.org/mailman/listinfo/python-list
