max()
Returns the number having the higher value between the two operands.
Syntax:
lower
= max(
numberA
,
numberB
)
Example:
print
min(
13, 24
)
will print value 25 because is the bigger value between the two numbers.
see also
min()
command