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
List comprehension is probably more readable, but here's another way:
>>> a = (1,2) >>> b = (3,4) >>> tuple(map(sum,zip(a,b))) (4,6)