Conditionals and Decision Making
Which operator is used to check if two values are equal in Python?
Write an if statement that checks if a variable called 'age' is 18 or older, and prints "You can vote!" if true:
What will this code print?x = 10if x > 5: print("Big")else: print("Small")
x = 10if x > 5: print("Big")else: print("Small")
In Python, you can have multiple elif statements in a single if-elif-else structure.
Which logical operator represents "AND" in Python?