demo_ref_set_union2.py:
x = {"a", "b", "c"} y = {"f", "d", "a"} z = {"c", "d", "e"} result = x.union(y, z) print(result)
➜ begtut>python demo_set_union2.py
{'e', 'a', 'f', 'b', 'd', 'c'}