2. Write a Python program to find maximum between three numbers. Solution :- no1 = int(input("Enter the First number :- ")) no2 = int(input("Enter the Second number :- ")) no3 = int(input("Enter the Third number :- ")) if ((no1 > no2) and(no1 > no3)) : print("First number is Big :-",no1) elif (no2 > no3): print("Second number is Big :- ",no2) else: print("Third number is Big",no3) Output :-
All computer course for class 9th to 12th with proper practical and theory .........