Adding Values From Tuples of Same Length

后端 未结 6 962
隐瞒了意图╮
隐瞒了意图╮ 2020-12-06 05:07

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

6条回答
  •  春和景丽
    2020-12-06 05:34

    My two cents, hope this helps

    >>> coord = (50, 50)
    >>> change = (3, -5)
    >>> tuple(sum(item) for item in zip(coord, change))
    (53, 45)
    

提交回复
热议问题