write a python programme to find minimum number from two number
Answers
Answered by
4
a = input("Enter the first number: ")
b = input("Enter the second number: ")
if a < b:
print "a is minimum"
else:
print "b is minimum"
If a=b then you can say any of them minimum that's why I am not using elif here (•‿•)
Answered by
2
Answer:
Hope it helps you
Add me in brain list
Attachments:
Similar questions