1. Ajay is writing one program in Python he wants to use if else statement write
the example of IIT if else statement Python.
Answers
Answered by
1
Explanation:
a = 200
b = 33
if b > a:
print("b is greater than a")
else:
print("b is not greater than a")
Similar questions