You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
languages.add('sql') # add a new elementlanguages.add('r') # try to add an existing element (ignored, no error)languages.remove('java') # remove an elementlanguages.remove('c') # try to remove a non-existing element (throws an error)languages.discard('c') # removes an element if present, but ignored otherwiselanguages.pop() # removes and returns an arbitrary elementlanguages.clear() # removes all elementslanguages.update('go', 'spark') # add multiple elements (can also pass a list or set)