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 trialaaronbuckles
3,291 PointsSays I'm getting an Error, but I get correct output.
When I print the code in my local command prompt I get out {'i': 2, 'do': 1, 'not': 1, 'like': 1, 'it': 1, 'sam': 1, 'am': 1}
. This is the same as the example, except for order (but order for dictionaries isn't supposed matter), provided in the comments of the code. I don't understand why my code is incorrect.
# 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):
sentence = sentence.lower()
sentence = list(sentence.split(" "))
output = {}
for word in sentence:
count = 0
for w in sentence:
if w == word:
count += 1
output[word] = count
return output
1 Answer
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsIt is the way you use split(). split(" ") only looks for single white-spaces where split() will match single and multiple white-spaces.
aaronbuckles
3,291 Pointsaaronbuckles
3,291 PointsThank you!