python if statemetn code example

Example 1: python if statement

usrinput = input(">> ")
if usrinput == "Hello":
  print("Hi")
elif usrinput == "Bye":
  print("Bye")
else:
  print("Okay...?")

Example 2: if statement python

a = 11
b = 46

if a < b:
    print('a is less than b')
else:
 	print('a is greater than b')

Example 3: if statement python

x=1; y=0; z=0;
if 1 in {x,y,z}:
  print('At least one variable is equal to 1')

Example 4: if statement python

x = int(input("number: ")) # get number from user

if x < 0:
  print(f"{x} is less than 0!") # if x is less than 0, print x is less than 0
  
elif x == 0:
  print(f"{x} is equal to 0!") # if x is equal to 0 then print x is equal to 0
  
if x > 0:
  print(f"{x} is more than 0!") # if x is greater than 0 print x is more than 0

# yeah its me somewhatoriginal

Example 5: 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')