python 元组添加另一个元组
时间: 2023-11-08 20:05:47 浏览: 167
python 元组的使用方法
元组是不可变的数据类型,无法直接添加另一个元组。但是可以通过以下方式实现元组的合并:
```python
tuple1 = (1, 2, 3)
tuple2 = (4, 5, 6)
tuple3 = tuple1 + tuple2
print(tuple3) # 输出结果为 (1, 2, 3, 4, 5, 6)
```
以上代码中,我们通过 `+` 运算符将两个元组合并成一个新的元组。
阅读全文