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 trialKars Jansens
5,348 PointsI don't know why this isn't working {python}
question: Wow, I just can't stump you! OK, two more to go. I think this one's my favorite, though. Create a function named most_courses that takes our good ol' teacher dictionary. most_courses should return the name of the teacher with the most courses. You might need to hold onto some sort of max count variable.
Can someone help me?
# 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(strs):
count = 0
for teacher in strs.keys():
count += 1
return count
def num_courses(strs):
count = 0
for value in strs.values():
for item in value:
count += 1
return count
def courses(strs):
lista = []
for value in strs.values():
for item in value:
lista.append(item)
return lista
def most_courses(strs):
dicta = dict()
lista = []
for item in strs.items():
count = 0
x, y = item
for course in y:
count +=1
dicta[count] = x
for key in dicta.keys():
lista.append(key)
KEY = max(lista)
teacher = strs[KEY]
return teacher
1 Answer
Steven Parker
231,269 PointsYour method is unusual and a bit complicated — but essentially sound. And you are very close to having it working!
Once you've identified the largest number of courses in "KEY", you need the teacher associated with that course. But the code is trying to look up the count in the original dictionary instead of the one you built with counts as keys and teachers as values ("dicta"):
teacher = strs[KEY] # instead of using the original dictionary...
teacher = dicta[KEY] # look up the count in your custom one instead
Kars Jansens
5,348 PointsKars Jansens
5,348 PointsThank you