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 trialMathew Yangang
4,433 Pointsreturn names of all courses
I'm trying to return names of all courses in task 2, but my codes keeps crashing
COURSES = {
"Python Basics": {"Python", "functions", "variables",
"booleans", "integers", "floats",
"arrays", "strings", "exceptions",
"conditions", "input", "loops"},
"Java Basics": {"Java", "strings", "variables",
"input", "exceptions", "integers",
"booleans", "loops"},
"PHP Basics": {"PHP", "variables", "conditions",
"integers", "floats", "strings",
"booleans", "HTML"},
"Ruby Basics": {"Ruby", "strings", "floats",
"integers", "conditions",
"functions", "input"}
}
def covers(topics):
course_list = []
for course,sets in COURSES.items():
if topics.intersection(sets):
course_list.append(course)
return course_list
def covers_all(single_set):
all_course=[]
single_set = set(single_set)
for topics,sets in covers_all.items():
all_course.append(topics)
return all_course
2 Answers
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsI would do something like this
def covers_all(single_set):
items = list(single_set) # turning the given set into a list
result = [] # list to return
# looping through the COURSES dict
for x, y in COURSES.items():
# checking if both items from the 'single_set are in the sets in COURSES
if items[0] in y and items[1] in y:
result.append(x)
return result
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points# I don't see covers_all defined anywhere?
for topics,sets in covers_all.items():
Mathew Yangang
4,433 PointsThat's the function name