xxxxxxxxxx
# 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()
xxxxxxxxxx
1
2
new_person = person.copy()
new_person = dict(person) # another way to create a copy of dictionary
Copied!