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 trialwan muhammad najmie wan sabri
1,943 Pointstask 4 of teachers stats
i tried this in workspace and it shows the result that i want. but when i run it in task 4, it keeps saying task 3 is no longer true or something like that. iām pretty sure my code is correct though but kaybe i missed something lol help
# 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(dicti):
return len(dicti.keys())
def num_courses(dicti):
total = 0
for item in dicti.values():
total += len(item)
return total
def courses(dicti):
course = []
for item in dicti.values():
for item2 in item:
course.append(item2)
return course
def courses(dicti):
teacher = ["test"]
max = 0
for item in dicti:
if len(dicti[item]) > max:
max = len(dicti[item])
teacher.pop()
teacher.append(dicti)
return teacher
2 Answers
Miguel de Luis Espinosa
41,279 Pointswhy have you defined "courses" twice?
Miguel de Luis Espinosa
41,279 Pointsyou are returning an Array. The challenge does not ask for you to return an array :)
wan muhammad najmie wan sabri
1,943 Pointswan muhammad najmie wan sabri
1,943 Pointsoh my bad. got mixed up with the last task.
anyway, i changed the function name, but it says didnt get the correct teacher. any ideas?