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

Next, create a function named num_teachers that takes the same dictionary of teachers and classes. Return the total numb

I CANT FIGURE THIS OUT! GAHHHHHHHH!!!!

2 Answers

Steven Parker
Steven Parker
230,274 Points

It helps to use the "Get Help" button from inside the course because it adds a link to the course for you. Otherwise you should add a link to the course/challenge yourself. It's also good to share the answer you were attempting.

But, this particular question has been frequently asked before, like :pushpin: here, :pushpin: here, :pushpin: here, and :pushpin: here. It basically boils down to appying the len() function to the argument and returning the result. See the linked previous questions for more details.

Yuan Gao
Yuan Gao
8,947 Points

def num_teachers(dict): num=0 for teacher in dict: num += 1 return num