Select all correct ways to copy a dictionary in Python Select one or more: a. dict2 = dict1.copy() b. dict2 = dict(dict1.items()) c. dict2 = dict(dict1) d. dict2 = dict1 code example
Example: copy a dict in python
dict2 = dict1.copy()
dict2 = dict1.copy()