python else if 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 else python

# IF ELSE ELIF 

print('What is age?')
age = int(input('number:')) # user gives number as input
if age > 18:
    print('go ahead drive')
elif age == 18:
    print('come personaly for test')
else:
    print('still underage')

Example 3: elif python

The elif statement allows you to check multiple expressions for TRUE 
and execute a block of code as soon as one of the conditions evaluates
to TRUE. Similar to the else, the elif statement is optional. However,
unlike else, for which there can be at most one statement, there can 
be an arbitrary number of elif statements following an if.

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

Example 4: if syntax in python

variable_name = input("y/n? >> ")
if variable_name == "y":
	print("That's good! :) ")
# note the double equal signs. only a single equal sign will receive a Syntax error blah blah blah message.
elif variable_name == "n":
    print("That's bad! :( ")
else:
    print("You blow up for not following my instructions. Detention forever and get lost!")

Example 5: or statement python

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

Example 6: how to list more than 1 condition in an if statement python

bool = True
str = 'Helo'
int = 9
if bool == True and str == 'Helo':
  print('Hello World')
if bool == False or int == 9:
  print('Success')

Tags:

Misc Example