You have already completed these exercises!
Do you want to take them again?
You completed the Python Copy Dictionaries Exercises from W3Schools.com
Share on:
What is a correct syntax for making a copy of this dictionary:x = {'type' : 'fruit', 'name' : 'apple'}
x = {'type' : 'fruit', 'name' : 'apple'}
y = x.clone()
y = x.duplicate()
y = x.copy()