merge_watchlists(main, *others) that folds every extra watchlist (iterables of show titles) into the set main in place using update operations, then returns the same set object (verify with is that no new set was created).s = {'Dark'}; merge_watchlists(s, ['Ozark'], ['Dark', 'Suits']) is sTrue
The original set object now holds {'Dark', 'Ozark', 'Suits'}.
set.update() accepts any iterable and mutates in place.
*others collects the variadic arguments.