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 Pointscover_all
I keep getting error "couldn't find covers_all", i'm not sure what that is
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_all(single_set):
all_course = []
single_set = set(single_set)
for x,y in COURSES.items():
if items[0] in y and items[1] in y:
all_course.append(x)
return all_course
def covers(set_topics):
course = []
for x,y in COURSES.items():
if set_topics.intersection(y):
course.append(x)
return course
2 Answers
Yuyang Peng
5,665 PointsThere is undefined item[0] and item[1], but I dont know how to solve the problem sorry, struggling as well
Yuyang Peng
5,665 PointsHad two days off hhahah, Thank you for that but I solved that too. Learning OOpy now
Mathew Yangang
4,433 PointsMathew Yangang
4,433 PointsHi Yuyang, i think i figured out the solution, let me know if you need help