write a python programme to take two number and find whether both are same..
Answers
Answered by
2
a = input("Enter the first number: ")
b = input("Enter the second number: ")
# if a is b: - Compares id's, and can cause #inconsistencies. Use == instead.
if a == b:
print "Both inputs are equal"
else:
print "Your input is not equal."
If its helpfull then send a thanks (•‿•)
Answered by
2
Answer:
yes angel the python programme equal28
Similar questions