MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the codes shown below? l1=[10, 20, 30] l2=l1 id(l1)==id(l2) l2=l1.copy() id(l1)==id(l2) |
| A. | False, False |
| B. | False, True |
| C. | True, True |
| D. | True, False |
| Answer» E. | |