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

Sohail Mirza
seal-mask
.a{fill-rule:evenodd;}techdegree
Sohail Mirza
Python Web Development Techdegree Student 5,158 Points

Why doesn't my code work

In my dictionary i have four values in my dictionary in my dictionary. I should it get back the value 4 but i get back 7...could someone explain where i am going wrong

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.keys():
        count +=1
    return count
def num_courses(teachers):
    for value in teachers.values():
        total = len(value)
    return total

1 Answer

Steven Parker
Steven Parker
229,644 Points

I'm not sure where the 7 comes from (I get 2), but your first function initializes the count to 0 and then adds to it in the loop to get a correct result.

The second function is just assigning the total value, so after the loop is over it will only contain the length of the last value.

Sohail Mirza
seal-mask
.a{fill-rule:evenodd;}techdegree
Sohail Mirza
Python Web Development Techdegree Student 5,158 Points

Hi Steven

I was using my own dictionary which i wrote in pycharm.. The last value was English which was 7 characters hence that is where i got seven from. You indirectly gave me the answer as i need to re evaluate my code

cheers