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 trialChristian Wilson
1,290 PointsI have a solution for wordcount.py that works in workspaces but when I check my work, it tells me it's wrong.
It tells me to split on whitespaces and to lowercase which I do! Is this a bug?
# 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(astring):
bstring = astring.lower()
alist = bstring.split(" ")
adict = dict()
for i in alist:
if i not in adict:
adict.update({i: 1})
else:
adict[i]+=1
return adict
2 Answers
Steven Parker
231,236 PointsThere's a difference between "all whitespace" and explicit spaces. To split on all whitespace, just leave the argument to "split" empty.
Dylan Bourque
2,700 Pointsvery impressive that you did this, i was very stumped!
Christian Wilson
1,290 PointsChristian Wilson
1,290 PointsWhat exactly is the difference?
Steven Parker
231,236 PointsSteven Parker
231,236 PointsWell, if you provide a space, it will split only on space characters. But if you leave the argument empty, it will split on spaces, tabs, newlines, form feeds, perhaps a few other non-printing characters, and any combinations of those.
The challenge tests your code with a more complex sample than the one shown in the example.