Saved Bookmarks
| 1. |
Output of : a={1:"A",2:"B",3:"C"} print(a.get(1,4)) |
|
Answer» uired Answer:- Given Code:a={ 1:"A", 2:"B", 3:"C" } print(a.get(1,4)) Output:>> A Explanation:
See the attachment for output. |
|