InterviewSolution
Saved Bookmarks
| 1. |
Dictionary could be copied to another dictionary using which of following syntax? |
|
Answer» DICTIONARY could be COPIED to ANOTHER dictionary using which of following syntax? Choose the correct option from below LIST (1)dict_a = dict_b.clear() (2)dict_a=dict_b.copy() (3)dict_a = dict_b (4)dic_a = copy(dict_b) Answer:-(2)dict_a=dict_b.copy() |
|