Write the definition of a function max that has three int parameters and returns the largest.
LANGUAGE: PYTHON
CHALLENGE:
Write the definition of a function max that has three int parameters and returns the largest.
SOLUTION:
def largest(num1,num2,num3): max(num1,num2,num3)