python if else syntax code example

Example 1: python if statement

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

Example 2: or statement python

if x==1 or y==1:
  print(x,y)

Example 3: python if

if num<5:
  print('Num less than 5')
elif 5<= num <=9:
  print('Num between 5 and 9')
else:
  print('Num more than 9')

Example 4: if statement python

if (condition):
   result
    
else:
   result

Example 5: else if python

if expression1:
   statement(s)
elif expression2:
   statement(s)
elif expression3:
   statement(s)
else:
   statement(s)

Example 6: if statement python

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

Tags:

Misc Example