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 trial

Python Python Collections (2016, retired 2019) Dictionaries Teacher Stats

Create a new function named num_courses that will receive the same .

Stuck again on this one. Please help

teachers.py
# 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(teachers):
    count = 0
    for teacher in teachers:
        count += 1
    return count

def num_courses(teachers):
    count = 0
    for courses in teachers:
        count += 1
    return count

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You are mostly there. The challenge is looking for the total number of courses across all teachers.

When using for courses in teachers:, the value of courses will be the dict keys, not the list of courses. There a couple of fixes available:

# look up the courses and get their lengths:
 count += len(teachers[courses])

# use 'values()' to get the actual courses
for courses in teachers.values():
    count += len(courses)

Post back if you need more help. Good luck!!

thanks.

Vlad Bitca
PLUS
Vlad Bitca
Courses Plus Student 2,702 Points

Try this:

def num_courses(dict):
    count = 0
    for x in dict: 
        if isinstance(dict[x], list): 
            count += len(dict[x]) 
    return(count)