Hello,
print max(-10, 10)
10
print max('-10', 10)
-10My guess max converts string to number bye decoding each of the characters to it's ASCII equivalent? Where can i read more on exactly how the situations like these are dealt with? Thank you AZ
-- http://mail.python.org/mailman/listinfo/python-list
