= 4
x if x > 3:
print("Greater than 3")
elif x < 5:
print("Less than 5")
Greater than 3
elif
and a if
just after another if
?import turtle
t = turtle.Turtle()
choice = input("Choose between square, circle or both: ")
if choice.lower() == "square" or choice.lower() == "both":
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
if choice.lower() == "circle" or choice.lower() == "both":
turtle.circle(50)
print("Finished!")
square
?both
?potato
?choice.lower()
in the comparison?