Below is the 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 find maximum number 

Output:

Python program to find maximum number 
Python program to find maximum number 

Explore More

Python tutorials

We are starting a Python Tutorials Series for Beginners and Professionals. In these Python Tutorials, we will cover all the features of Python. You will learn from basic to advanced-level features

f-strings in Python

Python offers a powerful feature called f-strings (formatted string literals) to simplify string formatting and interpolation. f-strings is introduced in Python 3.6 it provides a concise and intuitive way to embed expressions and variables

Input and Output in Python

Understanding input and output operations is fundamental to Python programming. With the print() function, you can display output in various formats, when the input() function/method enables interaction with users by gathering