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 trialAntoine Solomon
2,850 PointsI seem to have an issue with my implmeentation of wordcount.py. Could someone take a look ?
Here's the details of the code I created for wordcount.py Now I ran this in the workspace and my local terminal and it looks correct. Just don't know why i get bummer message.
# 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(sentence):
seen = {} # the words that we have seen and the occurance of the words
lower_case_sentence = sentence.lower()
for word in lower_case_sentence.split(" "):
if word in seen:
seen[word] += 1
else:
seen[word] = 1
return seen
1 Answer
Eric M
11,546 PointsYou're very close but only splitting on spaces and likely only including spaces in your test cases in your local terminal. The Treehouse test cases will test on non-space whitespace as well (the bummer message should say "make sure you're splitting on all whitespace" but the impact of that is easy to overlook).
If you don't provide split()
with any arguments it will split on all whitespace by default.
Antoine Solomon
2,850 PointsAntoine Solomon
2,850 PointsThank you. I can't believe I missed that one.