Assume that S and T are assigned sets. Without using the join operator |, how can I find the union of the two sets? This, for example,
S
T
|
You can do union or simple list comprehension
union
[A.add(_) for _ in B]
A would have all the elements of B