Dictionary could be copied to another dictionary using which of the following syntax?
dict_a=dict_b.copy
dict_a = dict_b
dict_a = dict_b.clear()
dict_a = copy(dict b)
Answers
Answered by
0
Answer:
dict_a=dict_b
Explanation:
Answered by
0
Answer:
dict_a=dict_b.copy()
Explanation:
Similar questions