Write the definition of a function max that has three int parameters and returns the largest.

Write the definition of a function max that has three int parameters and returns the largest.



def largest(num1,num2,num3):

max(num1,num2,num3)


Learn More :