python and statement code example

Example 1: 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 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

#a statement that checks if a condition is correct
#example:
x=5
if x == 5:
  print("x is 5")
else:
  print("x is not 5")

Example 5: if statement python

if (condition):
   result
    
else:
   result

Example 6: and in python

#And opreator in python

a = 12
b = 56

print(a and b * 12)