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

copy = {}

What is this line of code doing exactly? On the word count code challenge and saw an answer using this as part of the code. Not quite sure what that means step by step here is the full code:

def word_count(word): word = word.lower() words = word.split()
copy = {}

for item in words:
    if item in copy.keys():
        copy[item] = copy[item] + 1
    else:
        copy[item] = 1
return copy

1 Answer

Josh Keenan
Josh Keenan
19,652 Points

Copy is an empty dictionary you are using to store the words in as keys, and then the frequency of the word is the value