best way to use if statements in python code example
Example 1: how to use an if statement in python
x = True
#Only one of the branches will ever execute
if x == True:
print("x is true")
elif x == False:
print("x is false")
else:
print("x is neither true nor false")
Example 2: if statements python
water = input('Does your creature live underwater?')
if water == 'yes':
print('Your creature lives underwater')
else:
print('Your creature does not live underwater')
Example 3: how to do if= python
#if you are doing this
if X=1
#Do this
if X==1