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 trialLydia O' Brien
4,014 PointsI can't figure this out!!!!!
I have tried different solutions and even bothered to look up tips, but I can't figure it out! I been on this question for 3 days now and I can't try this question anymore for anymore times!! Help!
# 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):
counts = {}
for word in a_string.split():
1 Answer
Thomas Nilsen
14,957 Pointsyou could do something like this;
def word_count(a_string):
return {i:a_string.count(i) for i in a_string.lower().split()}
Taylor Schimek
19,318 PointsTaylor Schimek
19,318 PointsHowdy. So far this looks right. Now, you just need to update counts inside that for loop. Also, make sure .split() has a space between the parentheses. .split( ).