I'm doing some homework for my python programming class and I just wanted to know if it was possible to set any variable c equal to the greater of a and b without using an if statement.
c = bigger(a, b)
Just a thought since swapping two variables in python is so easy (a, b = b, a) that this might also be.
All help appreciated :)