2025/2026 Graded A+
What do we do to a Python statement that is immediately after an if statement to indicate that the
statement is to be executed only when the if statement is true? - Indent the line below the if
statement
Which of these operators is not a comparison / logical operator? - =
What is true about the following code segment:
if x == 5 :
print('Is 5')
print('Is Still 5')
print('Third 5') - Depending on the value of x, either all three of the print statements will execute or
none of the statements will execute
When you have multiple lines in an if block, how do you indicate the end of the if block? - You de-
indent the next line past the if block to the same level of indent as the original if statement
You look at the following text:
if x == 6 :
print('Is 6')
print('Is Still 6')
print('Third 6') - You have mixed tabs and spaces in the file
(it needs to be three spaces not tab depending on your texteditor, atom will atomatically convert tab
to the proper spaces.)
What is the Python reserved word that we use in two-way if tests to indicate the block of code that is
to be executed if the logical test is false? - else
What will the following code print out?
x=0
if x < 2 :
print('Small')