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

Python Python Collections (2016, retired 2019) Sets Set Math

Sohail Mirza
seal-mask
.a{fill-rule:evenodd;}techdegree
Sohail Mirza
Python Web Development Techdegree Student 5,158 Points

explanation of how the code works

I have got this code from a previous student. I am trying to reverse engineer it but finding it difficult. Could someone please break this down for how this works from line 3 downwards

sets.py
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(x):
    courses_list = []
    for course in COURSES:
        if x.intersection(COURSES[course]):
            courses_list.append(course)
    return courses_list

1 Answer

Steven Parker
Steven Parker
229,786 Points

Here's a breakdown:

  courses_list = []                     # start with an empty list
  for course in COURSES:                # check each course, one at a time
    if x.intersection(COURSES[course]): # if the set (x) has anything in common with the course 
      courses_list.append(course)       # then add the name of the course to the list
  return courses_list                   # finally return the new list  

Note that an intersection is only those items both sets have in common. If it is empty, it will be "falsey" to the "if". But if there is at least one thing in it, it will be "truthy".

Does that clear it up?