Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} z = {"cherry", "micra", "bluebird"} x.update(y, z) print(x)
{'apple', 'microsoft', 'cherry', 'banana', 'google', 'micra', 'bluebird'}