On 1/29/19 9:27 AM, Jack Dangler wrote:

wow. Seems like a lot going on. You have 3 ints and need to determine the max? Doesn't this work?

N1, N2, N3

if N1>N2
   if N1>N3
     MaxNum = N1
elif N2>N3
   MaxNum = N2
elif N1<N3
   MaxNum = N3

No.  Assuing that you meant to include colons where I think
you did, what if (N1, N2, N3) == (5, 4, 6)?
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to