MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following piece of code when executed in Python shell? >>> a=dict() >>> a[1] |
| A. | An exception is thrown since the dictionary is empty |
| B. | ‘ ‘ |
| C. | 1 |
| D. | 0 |
| Answer» B. ‘ ‘ | |