write a Python program to find number is greater number in two numbers
Answers
Answered by
16
Answer:
# Python Program to find Largest of Two Numbers
a = float(input(" Please Enter the First Value a: "))
b = float(input(" Please Enter the Second Value b: "))
if(a > b):
print("{0} is Greater than {1}".format(a, b))
elif(b > a):
print("{0} is Greater than {1}".format(b, a))
else:
print("Both a and b are Equal")
Answered by
1
Answer:
It is the solution.
I Hope, it will help you!
Attachments:
Similar questions
Physics,
5 months ago
Math,
5 months ago
Accountancy,
11 months ago
Physics,
11 months ago
Math,
1 year ago