Paul McGuire wrote:

So "A" == 'a' is true in Python, not true in C.

>>> "A" == 'a' False

I think you meant:

>>> "A" == "A"
True
--
Michael Hoffman
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to