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 trialorenbatsoren
2,727 PointsDictionary order
Hi,
Is there any way to contorl the order of the key & value in dictionary? i created two lists and i am mapping them to one dictionary. the problem is that i can't control the order of the insertion. this is the expected out:
{'i': 2, 'do': 1, 'it': 1, 'sam': 1, 'like': 1, 'not': 1, 'am': 1}
and this is my output:
{'do': 1, 'like': 1, 'sam': 1, 'i': 2, 'am': 1, 'it': 1, 'not': 1}
# E.g. word_count("I do not like it Sam I Am") gets back a dictionary like:
# {'i': 2, 'do': 1, 'it': 1, 'sam': 1, 'like': 1, 'not': 1, 'am': 1}
# Lowercase the string to make it easier.
def word_count(key_list):
value_list = []
my_dict = {}
key_list = key_list.split()
for lower in range(len(key_list)):
key_list[lower] = key_list[lower].lower()
for i in range(len(key_list)):
value_list.append(key_list.count(key_list[i]))
print(value_list)
print(key_list)
for num in range(len(key_list)):
my_dict[key_list[num]] = value_list[num]
print(my_dict)
word_count("I do not like it Sam I Am")
Thanks.
1 Answer
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsDictionarys are not ordered. From the docs: It is best to think of a dictionary as an unordered set of key: value pairs https://docs.python.org/3/tutorial/datastructures.html#dictionaries
If you want an order dictionary, you would need to use OrderDict. But this is not required for this challange.
from collections import OrderedDict
orenbatsoren
2,727 Pointsorenbatsoren
2,727 PointsThank you.