Skip to main content

Posts

Showing posts with the label 2. Write a Python program to find maximum between three numbers.

ads1

Python Condition ,2. Write a Python program to find maximum between three numbers.

 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 :-        

ads2