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 First Sets

can some one help me to how to solve challenge.

???????????????????????????????

sets.py
def songs(

2 Answers

diogorferreira
diogorferreira
19,363 Points

Hopefully you've solved it by now, but if you haven't I'd recommend re-watching the last video to fully understand sets. In the first task, it asks you to - Start by creating a set variable named songs that has three song titles in it.

songs = set(['song1', 'song2', 'song3'])
  • to create a set you have to use set() not def() otherwise you're creating a function It then says to .add() "Treehouse Hula" You can do this quite simply by calling it on songs
songs.add("Treehouse Hula")

Finally to update the sets you use .update() on songs and as arguments you pass {"Python Two-Step", "Ruby Rhumba"} {"My PDF Files"} Like so:

songs.update({"Python Two-Step", "Ruby Rhumba"}, {"My PDF Files"})

thanks