Answers for "python higher function two numbers"

0

python higher function two numbers

def maximum(a, b):
      
    if a >= b:
        return a
    else:
        return b
      
# Driver code
a = 2
b = 4
print(maximum(a, b)) # output 4
Posted by: Guest on April-05-2021

Code answers related to "python higher function two numbers"

Python Answers by Framework

Browse Popular Code Answers by Language