Saved Bookmarks
| 1. |
Consider the following list myList. What will be the elements of myList after the following two operations: myList = [10,20,30,40] i. myList.append([50,60]) ii. myList.extend([80,90]) |
|
Answer» Consider the following list myList. What will be the elements of myList after the following two operations: myList = [10,20,30,40] i. myList.append([50,60]) ii. myList.extend([80,90]) |
|