Saved Bookmarks
| 1. |
Consider a list: list1 = [6,7,8,9]What is the difference between the following operations on list1: a. list1 * 2 b. list1 *= 2 c. list1 = list1 * 2 |
|
Answer» Consider a list: list1 = [6,7,8,9] What is the difference between the following operations on list1: a. list1 * 2 b. list1 *= 2 c. list1 = list1 * 2 |
|