Introduction to Programming using Python 1st Edition

Published by Pearson
ISBN 10: 0132747189
ISBN 13: 978-0-13274-718-9

Chapter 2 - Elementary Programming - Section 2.10 - Augmented Assignment Operators - Check Point - MyProgrammingLab - Page 44: 2.16

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}$.
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.