Python program maximum number
Given three number a b and c, the task is that we have to find the greatest element in among in given number
Examples:
Input : a = 2, b = 4, c = 3 Output : 4 Input : a = 4, b = 2, c = 6 Output : 6
Method 1 (Simple)
Output:
14Method 2 (Using List)
. Initialize three number by n1, n2 and n3
. Add three numbers into list lst = [n1, n2, n3].
. Using max() function to find the greatest number max(lst).
. And finally we will print maximum numberOutput:
14Method 3 (Using max function)
Output:
14