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
As John Y mentions, this is pretty easy using numpy.
import numpy as np x1 = (0,3) x2 = (4,2) tuple(np.add(x1,x2))