python and in if statement code example

Example 1: python if statement

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

Example 2: 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 3: python if and

if foo == 'abc' and bar == 'bac' or zoo == '123':
  # do something

Example 4: 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 5: if statement in python

#Conditionals statements in python
#'=' conditionals statements
a = 123
b = 123

if(a==b):
  print('True')
  
#<, > conditionals statements

a = 2
b = 45

if(a<b):
  print('A is smaller than B')

Example 6: python if statement

if (condition1):
  print('condition1 is True')
elif (condition2):
  print('condition2 is True')
else:
  print('None of the conditions are True')