Definition
A compact way to process all or part of the elements in an iterable and
return a set with the results. results = {c for c in 'abracadabra' if
c not in 'abc'} generates the set of strings {'r', 'd'}. See
Displays for lists, sets and dictionaries.