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