For example, this runs in Python:
a = (1,2,3)
b = (1,4,5)
print(a+b)
and prints:
(1,2,3,1,4,5)
but I get why it won't allow for something like subtracting (a-b). How would I be able to I guess 'remove' an item from a tuple although tuples aren't mutable.:
a = (1,2,3)
b = (1,)
so it would return:
(2,3)