python将字符串转为元组
时间: 2024-05-18 16:07:49 浏览: 137
Python字符串、元组、列表、字典互相转换的方法
5星 · 资源好评率100%
可以使用tuple()函数将字符串转换为元组。下面是一个示例代码:
```python
string = "hello"
tuple = tuple(string)
print(tuple) # 输出: ('h', 'e', 'l', 'l', 'o')
```
这段代码将字符串"hello"转换为元组,并将结果打印出来。每个字符都对应元组的一个元素。
阅读全文