If else:
Through if else we prove that which statement is true or not.
---------------------------------------------------------------------------------------------------------------------------
number=int(input('Tell me your number:'))
if number>10:
print('Your number is greater then 10')
else:
print('Your number is less then 10')
output:
0 Comments