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

Henrique Costardi
Henrique Costardi
4,883 Points

In my terminal the code works, but wont approve in the test.. any ideas? thanks

I am stuck

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 most_classes(dicts):
  most_class =""
  max_count =0
  for teacher in dicts:
    if len(dicts[teacher])>max_count:
      max_count = len(dicts[teacher])
      most_class = teacher
  return most_class
def num_teachers(test2):
  return len(test2)
def stats (test3):
  new_list = []
  for key in test3:
    holder = []
    holder.append(key)
    holder.append(len(test3[key]))
    new_list.append(holder)
  return new_list
def courses(teach_dict):
  my_list=[]
  for teachers in teach_dict():
    for courses in teach_dict[teachers]:
      my_list.append(courses)
return my_list

1 Answer

olegovich7
olegovich7
6,605 Points

If you've tested the code in workspaces, the problem might be with small things. Did you name functions exactly like the challenge task implies?