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

David Chacón
David Chacón
1,086 Points

Unsure about what Im doing wrong in teachers.py

So I think what my code is doing is only returning 2 values of the dict because there are only 2 keys. If thats the case, can you point me in the right direction? (not give me the answer)

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(courses):
    count = 0
    for value in courses.values():
        count += 1
    return count
Christian Rowden
Christian Rowden
2,278 Points

Hello,

I believe that 'count' is just returning the number of values rather than the number of items INSIDE of those value lists.

Cheer man and happy coding.

2 Answers

Christian Rowden
Christian Rowden
2,278 Points

Hello,

I believe that 'count' is just returning the number of values rather than the number of items INSIDE of those value lists.

Cheer man and happy coding.

David Chacón
David Chacón
1,086 Points

Awesome! That was great help!