The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #876
a = 1
a -= 2 + 3
print(a)
When the -= operator is used (decrement assignment), the whole right side of the operator is substracted to the variable. (python-reference.readthedocs.io/en/latest/docs/operators/...)
Question difficulty: 🔵🔵🔵🔵🔵