[Tutor] Difference between max(one, two) and max((one, two))

Jim Mooney cybervigilante at gmail.com
Wed Jul 10 21:39:30 CEST 2013


On 5 July 2013 11:27, Amandeep Behl <amandeep.qa at gmail.com> wrote:
> What is the difference between max(one, two) and max((one, two)) ?

Another clarification would be:

>>> max((1,2),(1,3))
(1, 3)  # a tuple, not an integer
-- 
Jim


More information about the Tutor mailing list