Answer
$\mathbf{5\\
-3\\
4\\
0.25\\
0\\
1\\
62}$
Work Step by Step
The use of augmented assignment operators allows you to assign a variable a value that was derived from an operation on the variable's initial value, in shorthand notation.
These expressions act in the same way as when the statement begins with 'a =', followed by an operation used on 'a'.
For example, a += 1 is the same as writing a = a + 1.
When $\textbf{a = 1}$, the Python Interpreter will assign those answers to the variable $\textbf{a}$.