What is a conditional statement?
A conditional statement checks for a certain true condition before executing its code.
What is a Boolean value?
A Boolean value is a logical test that every conditional statement has that evaluates a condition to determine whether it's True or False.
What kinds of logical tests can you perform in a conditional statement?
Some commonly used logical tests include equality, inequality, greater than, less than, and strings. You can also check whether or not an item is in a list.