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 trialAbrar Fahim
1,071 Pointshelp in task 4
im not sure what to do
# 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(num):
return len(num)
def num_courses(num):
total_courses = 0
for total in num:
total_courses = total_courses + len(num[total])
return total_courses
def courses(num):
course_list = []
for teacher in num:
course_list.extend(num[teacher])
return course_list
def most_courses(num):
1 Answer
Jesse Kroon
8,275 PointsHey Abrar,
Could you please include the task that is given for this part of the course? That way we can answer your questions more clearly.
Thanks in advance!