python元祖拼接字符串
时间: 2023-11-22 19:49:59 浏览: 104
python实现字符串和数字拼接
Python中元组是不可变的序列,因此不能直接拼接字符串。但是可以将元组转换为列表,然后将列表中的元素拼接成字符串。以下是一个例子:
```python
tuple1 = ('Hello', 'World')
list1 = list(tuple1)
str1 = ''.join(list1)
print(str1) # 输出:HelloWorld
```
阅读全文