在Python中,可以使用`sum()`函数来对元组中的元素求和。例如:
```python
my_tuple = (1, 2, 3, 4, 5)
total = sum(my_tuple)
print(total)
```
运行以上代码,将会输出元组中所有元素的和,即15。