Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
#largestnumber of the these three numbers

N = [2,89,567]

print(max(N))
#largestnumber of the these three numbers (enter 3 input values/Numbers)


num1 = float(input("Enter the Number"))
num2 = float(input("Enter the Number"))
num3 = float(input("Enter the Number"))

if (num1>=num2) and (num1>=num3):
largest=num1
elif (num2>=num1) and (num2>=num3):
largest=num2
else:
largest=num3

print("largest num is",largest)