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 trialBrian Hudson
14,785 PointsNot sure why these aren't working?
For the most_courses function challenge in the Pythons Collections course, I've tried several solutions and not sure why they aren't passing...can anyone shed some light please?
def most_courses(teacher_breakdown):
count = 0
values_list = []
for teacher in teacher_breakdown.values():
values_list.append(teacher)
if len(values_list) > count:
count = (len(values_list))
for name in teacher_breakdown:
if name[] == count
return name
also tried:
def most_courses(teacher_breakdown):
max_count = 0
max_teacher = ""
for teacher, courses in teacher_breakdown.items():
if len(courses) > max_count
max_count = len(courses)
max_teacher = teacher
return max_teacher
# 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(teacher_breakdown):
number_teachers = 0
for teacher in teacher_breakdown:
number_teachers += 1
return number_teachers
def num_courses(teacher_breakdown):
number_courses = 0
for teacher in teacher_breakdown.values():
number_courses += len(teacher)
return number_courses
def courses(teacher_breakdown):
courses = []
for teacher in teacher_breakdown.values():
courses += teacher
return courses