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 trialSoraia Carmo
3,527 PointsWhy not the same logic?
Hi!
Could someone explain why can't I use the same logic for this step as it was used for the first one?
Thank you
# 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_dict):
num_keys = []
for teachers in teacher_dict:
num_keys.append(teacher_dict.keys())
return len(num_keys)
def num_courses(teacher_dict):
num_values = []
for courses in teacher_dict:
num_values.append(teacher_dict.values())
return len(num_values)
1 Answer
Cooper Runstein
11,850 PointsThis code won't work because each key only has one value in this example, an array that contains courses. So your array will contain one array per teacher, you need to figure out the length of each array within your num_values array to use that logic. It will work, it just takes one more step.
Soraia Carmo
3,527 PointsSoraia Carmo
3,527 PointsOh! That's right.. Didn't notice the values were in an array.
Thanks!