Computer Science, asked by venkatanavadeep11, 6 months ago

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 digbijoy123
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