在Python中,可以使用"+"运算符将两个元组合并在一起。例如:
```python
tuple1 = (1, 2, 3)
tuple2 = (4, 5, 6)
result = tuple1 + tuple2
print(result)
```
这将输出:
(1, 2, 3, 4, 5, 6)