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
You have the join statement backwards try:
print ', '.join(set_3)