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 trial

Python Python Collections (2016, retired 2019) Dictionaries Word Count

Mimon Copitman
Mimon Copitman
1,242 Points

word_count challenge i don't understand that!!! - my code is right

i'm not getting it!, what i'm missing here, when i run it on workplace it giving me the right answer

wordcount.py
def word_count(string):
    string_list = string.lower().split(" ")
    string_dict = {}

    for word in string_list:
        if word in string_dict:
            string_dict[word] += 1
            continue
        else:
            string_dict[word] = 1
    return string_dict

word_count("I do not like it Sam I Am")

1 Answer

Christopher Shaw
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

This is a common stumbling block in this challenge. Try this line and it produces unexpected results due to the extra spaces:

word_count("I do   not  like it Sam  I    Am")

Hint: It is in the way you used split().