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

Evgeniy Vdovenko
Evgeniy Vdovenko
1,346 Points

word_count not working

Hi! Im not sure what im doing wrong that system doesn't lets me through. I tried different variants, but nothing is working. in particular this one i created in PyCharm, tested it and then just copied over here, but in PyCharm it worked, but not here.

wordcount.py
# 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(someexp):
    new = {}
    string = someexp.lower().split()
    count = 0
    for word in string:
        if word in new:
            count += 1
            new.update({word: count})
        else:
            count = 1
            new.update({word: count})
    return new

2 Answers

I am not sure, but I believe that we can use the update() function only when you want to add another dictionary that already exists. the following code passed it.

def word_count(someexp):
    new = {}
    someexp=someexp.lower()
    string = someexp.split()

    for word in string:
        if word in new:
            #new[word] + 1 hold the value of the first dictionarie or second, or so on,  added it
            new[word]=new[word]+1
        else:

            new[word]=1
    return new

I am not sure, but I believe that we can use the update() function only when you want to add another dictionary that already exists. the following code passed it.

def word_count(someexp):
    new = {}
    someexp=someexp.lower()
    string = someexp.split()

    for word in string:
        if word in new:
            #new[word] + 1 hold the value of the first dictionarie or second, or so on,  added it
            new[word]=new[word]+1
        else:

            new[word]=1
    return new