Checkpoint 2.16.2.
- 12
- The value of
n
changes in the second statement. - 2
- Each statement changes the value of
n
, so 2 is not the final result. - 1
- Yes, starting with 12, subtract 3, multiply by 8, integer divide by 2, and then take remainder after dividing by 5.
- Nothing. An error occurs because
n
cannot be used that many times in compound assignment statements. - Remember that variables in Python are different from variables in math in that they (temporarily) hold values, but can be reassigned.
What is printed when the following statements execute?
n = 12
n -= 3
n *= 8
n //= 2
n %= 5
print(n)