Python program to find largest number of three or two numbers
top of page

Python program to find largest number of three or two numbers

Updated: Feb 16, 2022



To find the largest number among the three input numbers.


a = int(input("Enter first number: ")) b= int(input("Enter second number: ")) c = int(input("Enter third number: ")) if a >b and a>c: print("The Largest number is ",a) elif b>a and b >a: print("The Largest number is ",b)

else: print("The Largest number is ",c) Output:

Enter first number: 6

Enter second number: 7

Enter third number: 8

The largest number is 8

Video:




Write python program to find the largest number among the two input numbers.

Program:

a = int(input("Enter first number: "))

b= int(input("Enter second number: "))

if a>b:

print("The largest number is",a)

else:

print("The largest number is",b)

Output:

Enter first number: 67

Enter second number: 90

The largest number is 90


Write a program to input an alphabet and check whether it is a vowel or consonant.

Program:

ch=input("Enter an alphabet: ")

if ch=='a'or ch=='e' or ch=='o' or ch=='u':

print("Vowel")

else:

print("Consonant")

Output:

Enter an alphabet: e

Vowel


125 views0 comments

Recent Posts

See All

Python program to calculate the factorial of a number

Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument. This program is most for O Level Practical Exam so read it care

NumPy program to find the most frequent value in the list.

This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1]) print(x) print("most frequent value in the list:") print(np.

bottom of page