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 trialShrusti Giri
213 PointsCan anyone Please explain whats wrong with my code
When I use print(dict): it gives expected result But return doesn't work WHY??
# 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(string):
dict = {}
keys = (string.lower()).split(' ')
for word in keys:
dict.update({word : keys.count(word)})
return dict
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing terrific! The key here is that the challenge asks you to split on all whitespace. Currently, you are only splitting on spaces. My guess is that you haven't tried any test data that contains other whitespaces such as tabs or new line characters.
So where you have:
# this splits on only spaces
.split(' ')
You should have:
# this splits on ALL whitespace
.split()
When I correct this tiny thing, your code passes! Hope this helps!