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 trialDaniel Benisti
Front End Web Development Techdegree Graduate 22,224 Pointshelp please
what when wrong?
# The dictionary will look something like:
# {'Andrew Chalkley': ['jQuery Basics', 'Node.js Basics'],
# 'Kenneth Love': ['Python Basics', 'Python Collections']}
#
# Each key will be a Teacher and the value will be a list of courses.
#
# Your code goes below here.
def num_teachers(abc):
return len(abc)
def num_courses(abc):
summ = 0
for a in abc:
summ += len(abc[a])
return summ
1 Answer
Louise St. Germain
19,424 PointsHi Daniel,
The issue is very minor - you have a mix of tabs and spaces in your code. Specifically, you have a tab in front of the return statement on the last line, whereas the rest of your code is indented with spaces.
If you replace that final tab with 4 spaces, everything will work!
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsBrendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsThis code appears to pass step 2. Have you attempted step 3 yet?