using if statements in python 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: 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 4: else if python
if expression1:
statement(s)
elif expression2:
statement(s)
elif expression3:
statement(s)
else:
statement(s)
Example 5: 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 6: how to do if= python
#if you are doing this
if X=1
#Do this
if X==1