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 trialAlberto Tonegari
Full Stack JavaScript Techdegree Student 6,074 PointsPython Collections: teachers.py challenge
I tried so hard to make this challenge work on my own, but i am still a 'BIG GREENHORN' in programming(i know the commands, but i don't know when to implement them), can someone please give me direction to complete this challenge? What should i write inside the function "num_courses"? P.S: the function 'num_courses' needs to return the total courses of all the teachers.
# 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(value):
return len(value)
def num_courses(value):
total_number = 0
for i in value.values():
total_number += 1
return total_number
1 Answer
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsGood day,
You need to unpack the courses from the dictionaries:
In this case, i will return the teacher name and value[i] will return the courses for that teacher.
total_number = 0
for i in value:
total_number += len(value[i])
Alberto Tonegari
Full Stack JavaScript Techdegree Student 6,074 PointsAlberto Tonegari
Full Stack JavaScript Techdegree Student 6,074 PointsThank you!