In a graphical program I\'m writing using pygame I use a tuple representing a coordinate like this: (50, 50).
Sometimes, I call a function which returns another tupl
Well, one way would be
coord = tuple(sum(x) for x in zip(coord, change))
If you are doing a lot of math, you may want to investigate using NumPy, which has much more powerful array support and better performance.