Create a dictionary: data = {'name': 'Peter', 'age': 30} creates a dictionary with two key-value pairs.
Make a copy: person = data.copy() creates a new dictionary person that is a copy of data. This means person has its own memory address, separate from data.
Compare IDs: id(data) == id(person) compares the memory addresses of data and person. Since they are different objects, their IDs will not be equal, resulting in False.
Selected Answer: A
a is correct answer / copy and [:] are swallow copies so id changes
upvoted 1 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Ragoo
1 month agomegan_mai
3 months agochristostz03
3 months ago