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 trialTerry Felder
1,738 PointsWhew! i am just not understanding what they want me to do
i dont get it
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):
set1 = {topics}
2 Answers
Viraj Deshaval
4,874 PointsThis challenge is asking to create a function which return the list of course from courses Dictionary when you provide any value. I know this is little tricky but you can try to solve it. I think you can do this. Let me know if you still require help.
Terry Felder
1,738 PointsThanks Viraj i didnt realize it was dictionary..that helps alot i completed the challenges!
Terry Felder
1,738 PointsTerry Felder
1,738 PointsActually i completed the chellnges but i still do not feel confident with sets i understand them but do you know where i can get some practice work on sets?