How to find the Largest Among Three Numbers using python

a = float(input("Enter the first number: "))b = float(input("Enter the second nu

Created By :

Created On :

23-03-2024

How to find the Largest Among Three Numbers using python

Updated on 24, February 2024 293 Enrolled
how to

Step 1

a = float(input("Enter the first number: "))

b = float(input("Enter the second number: "))

c = float(input("Enter the third number: "))

max_num = max(a, b, c)

print("Largest number:", max_num)

line

Copyrights © 2024 letsupdateskills All rights reserved