if statement with and python code example

Example 1: if statement python

#a statement that checks if a condition is correct
#example:
x=5
if x == 5:
  print("x is 5")
else:
  print("x is not 5")

Example 2: if statement in python

answer = input(":")
if answer == "lol":
  print("haha")
else:
  print("not haha")
  exit()

please note that the exit() command is optional and is not necessary.

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

number = 5
if number == 5:
  print("number equals 5")
else:
  print("number does not equal 5")