54. Python Program to find the Biggest of the given numbers.
How does this program work?
- In this program we are going to learn about how to find the biggest of the given numbers using Python.
- Here we are using max() function to find the biggest of the given numbers.
Here is the code
n = (1,2,3,5,9,4)
print("Given numbers: ")
print(n)
print("Biggest number is : ",max(n))