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 trialChang Hyeon Lee
2,008 PointsI need help
I got type error for this ...
# 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(a_string):
string_dict = 0
for word in a_string.split():
if word in string_dict:
string_dict[word] += 1
else:
string_dict[word] = 1
return string_dict
1 Answer
Stuart Wright
41,120 PointsThe type error is because you initialised the variable 'string_dict' to 0, which is an integer. You should create a blank dictionary instead.
There is one other edit to make before your code will pass the challenge. You should convert the string to lowercase as the challenge instructs you to.
You can do the split() and lower() on separate lines if you prefer, but it works this way too:
def word_count(a_string):
string_dict = {}
for word in a_string.lower().split():
if word in string_dict:
string_dict[word] += 1
else:
string_dict[word] = 1
return string_dict