Basically, I am trying to join together the entries in a set in order to output one string. I am trying to use syntax similar to the join function for lists. Here is my atte
', '.join(set_3)
The join is a string method, not a set method.
join