Python program to find the largest of three numbers

preview_player
Показать описание
Question 4- Write a program to find largest number among the three inputted number.

Class 11 - First Python Assignment solution
#python #pythonprogram

👉Source code is given in the comment box💖💖

Guys if you also want that i solve your question then comment me.

Related Search:
* python program to find largest of 3 numbers,
* python program to find the largest of three numbers,
* python program to find largest of 3 given numbers,
* largest of three numbers in python,
* largest of three numbers in c using conditional operator,

Asked by
Rashmi Singh
Рекомендации по теме
Комментарии
Автор

#write a program to find the largest number among the three inputted numbers.

x=y=z=0
x=float(input("Enter first number:"))
y=float(input("Enter second number:"))
z=float(input("Enter third number:"))

max=x
if y>max:
max=y
if z> max:
max=z
print("Largest number is:", max)

parvatcomputertechnology
Автор

🙏🙏You are just 👍👍amazing .. 😍😍 very nice video

computerlearningbyargusaca
Автор

It has been three years and just one comment? Let me fix that.

Cream_puffz