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
My two cents, hope this helps
>>> coord = (50, 50) >>> change = (3, -5) >>> tuple(sum(item) for item in zip(coord, change)) (53, 45)