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 trialminasalehi
1,282 Pointsplease take a look at my code and tell me what i am doing wrong
this codes works on workspace, i need help to see what i am doing wrong, Thanks
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(set_of_topics):
list1 = []
for keys, values in COURSES.items():
if values.intersection(set_of_topics):
listt.append(keys)
return list1
def covers_all(single_set):
key_list=[]
for keys,values in COURSES.items():
if single_set.issubset(values):
key_list.append(keys)
return key_list
2 Answers
Daniel Turato
Java Web Development Techdegree Graduate 30,124 PointsThe problem is that you have spelt the list wrong in the covers() function on this line:
listt.append(keys)
when the list defined in the method is called list1. This should now pass the challenge as your other code looks correct
KRIS NIKOLAISEN
54,971 PointsThis line from task 1 is failing the challenge
listt.append(keys)
Looks like a typo for list1