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 trial

Python

Teachers.py challenge 2 receive Bummer

def num_courses(mydict): total_course = [] for list_courses in mydict.values(): #print list_courses for course in list_courses: if course not in total_course: total_course.append(course) else: break return len(total_course)

Grant Tribble
Grant Tribble
8,210 Points

Hi Junior, Can you use the "ask for help" button to link this to the exercise so we can see what the actual task is? It would make a lot easier to help you out.