MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following snippet of code? test = {1:'A', 2:'B', 3:'C'} test = {} print(len(test)) |
| A. | 0 |
| B. | None |
| C. | 3 |
| D. | An exception is thrown |
| Answer» B. None | |