import copy
d = { ... }
d2 = copy.deepcopy(d)
dict2 = dict1.copy()
new_dict = old_dict.copy()
# This method returns a shallow copy of the dictionary.
# It doesn't modify the original dictionary.
original_marks = {'Physics':67, 'Maths':87}
copied_marks = original_marks.copy()