Below is a program to find the maximum number out of the given three numbers.

n1= int(input("Enter first number : "))
n2= int(input("Enter second number : "))
n3= int(input("Enter third number : "))
if n1>n2 and n1>n3 :
    print(str(n1)+" is biggest number ")
elif n2>n1 and n2>n3 :
    print(str(n2)+" is biggest number ")
elif n3>n1 and n3>2 :
    print(str(n3)+" is biggest number ")
else:
    print("Hey !!! all numbers are equal")
Python program to get biggest number

Output:

Python program to get biggest number
Python program to get biggest number

Explore More

Explain about Hugging Face Transformers

Hugging Face Transformers is a powerful library designed for natural language processing (NLP), computer vision, and audio tasks. It provides state-of-the-art pretrained models and tools for fine-tuning and deploying these

Create new Python Virtual environment

Create a new virtual environment  Python 3 allows you to manage separate package installations for different projects. It creates a “virtual” isolated Python installation. When you switch projects, you can

Python 10 Programs for Beginners

Program 1:Write a program to create a 2D array using NumPy. Output: Program 2: Write a program to convert a python list to a NumPy array. Output: Program 3: Write a program to create matrix of 3×3 from 11 to 30. Output: Program 4: Write a program to create a data frame to store data of candidates who appeared in