syantax if else in python code example
Example 1: python if elif
num = 20
if num > 30:
print("big")
elif num == 30:
print("same")
else:
print("small")
#output: small
Example 2: how to do if= python
#if you are doing this
if X=1
#Do this
if X==1