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

BOHAN ZHANG
BOHAN ZHANG
4,446 Points

Python stuck

This challenge has several steps so take your time, read the instructions carefully, and feel free to experiment in Workspaces or on your own computer. For this first task, create a function named num_teachers that takes a single argument, which will be a dictionary of Treehouse teachers and their courses. The num_teachers function should return an integer for how many teachers are in the dict.

my code does not get through:

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.

teachers = {'Andrew Chalkley': ['jQuery Basics', 'Node.js Basics'], 'Kenneth Love': ['Python Basics', 'Python Collections']}

def num_teachers(teachers):

count = 0

for d in teachers.keys():

    count = count+1


print(count)

num_teachers(teachers)

Steven Parker
Steven Parker
229,771 Points

Please provide a link to the course page.

And when posting code, use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.

2 Answers

Steven Parker
Steven Parker
229,771 Points

The instructions say "The num_teachers function should return an integer".

But this code seems to be missing a "return" statement. It does have a "print", but the instructions don't ask for anything to be printed.