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
Amar Bir Singh
9,907 PointsUsing sets
Let's write some functions to explore set math a bit more. We're going to be using this COURSES dict in all of the examples. Don't change it, though! So, first, write a function named covers that accepts a single parameter, a set of topics. Have the function return a list of courses from COURSES where the supplied set and the course's value (also a set) overlap. For example, covers({"Python"}) would return ["Python Basics"].
my function is:
def covers(set1):
list1 = []
for items, values in COURSES.items():
if(values & set1 == set1):
list1.append(items)
continue
return(list1)
please tell me where I am wrong
2 Answers
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsGood day.
Please post a question from the link provided in the challenge so we can see what is being asked and what has been taught. https://teamtreehouse.com/library/python-collections-2/sets/set-math
The challenge is asking to provide the names of the sets that intersect. Your iterating though the Courses is correct, you just need to find the intersection between the set provided and the courses set.
if(values & set1):
list1.append(items)
Ignatius Matongo
9,418 Pointsdef covers(set2): set1 = set() for key, value in COURSES.items(): if value&set2 == set2: set1.update({key}) return list(set1)
Amar Bir Singh
9,907 PointsAmar Bir Singh
9,907 Pointsok thanks :)