On 9/10/2010 11:23 AM Neal Becker said...
IN [3]: bool('False')
Out[3]: True

In [4]: int('32')
Out[4]: 32




>>> eval('False')
False
>>> eval('32')
32
>>>


Otherwise, 'False' is just a string?

Emile

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to