A conditional statement in Python programming is a type of statement that compares the values of two or more operands. An operand refers to the data that is used by the program either for comparison, manipulation, or mathematical operation. An operand can be: ▪ a value inputted by the user ▪ a value set by the programmer inside the program The results of the comparison using a conditional statement can result to either a TRUE or FALSE response. ▪ The TRUE response signifies that the values of operands are equal to one another or it is within the range provided by one of the operands. ▪ The FALSE response indicates that the values of operands are not equal to one another or it is outside the range provided by one of the operands.