Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAli AlRabeah
909 PointsWhy is 3 the correct answer? I thought dictionaries didn't have an order.
Pertaining to this question:
You might need to open a Workspace or your local terminal for this one. With the following code:
test_dict = {"a": 1, "b": 2, "a": 3}
what value would test_dict["a"] return?
1 Answer
Steven Parker
231,236 PointsYou're right that dictionaries don't have an order. But they also require keys to be unique, so if you load in more than one thing with the same key, only the last one loaded will be retained.
Ali AlRabeah
909 PointsAli AlRabeah
909 PointsMakes sense. Thanks.