Answers for "python else if else"

17

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)
Posted by: Guest on April-17-2020
3

else if python

word = input('Word: ') # This will ask you to print a word

if word == 'hello': # <- If your response is: 'hello'
	print('world') # <- It will output: 'world'
    
elif word == 'world': # If the response is: 'world'
	print("Hey, that's my line >:(") # It will print this
else:
	print("Hey buster you gonna say hello or not?")
# If sombody prints ANYTHING ELSE other than 'hello' or 'world'
# It will output that print statment above!

#Hope this helped you!
Posted by: Guest on December-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language