python 字符串转化成元组
时间: 2023-09-09 07:10:19 浏览: 249
你可以使用Python内置的split()方法将字符串分割成元组,例如:
```
str = "apple,banana,orange"
tuple = tuple(str.split(","))
print(tuple)
```
这会输出一个元组,元组中包含分割后的每个字符串:
```
('apple', 'banana', 'orange')
```
相关问题
python 将字符串转换为元组
A:使用Python中的内置函数`tuple()`即可将字符串转换为元组。例如:
```
str = "1, 2, 3, 4, 5"
tuple = tuple(str.split(", "))
print(tuple)
```
输出结果为:
```
('1', '2', '3', '4', '5')
```
在这个例子中,我们首先定义了一个字符串`str`,其中包含了用逗号分隔的一些值。接着,我们使用`split()`方法将字符串分割成一个列表,然后使用`tuple()`将列表转换为元组。最后,我们打印出转换后的元组。
python字符串转元组
在Python中,可以使用split()函数将字符串转换为元组。split()函数将字符串按照指定的分隔符进行分割,并返回一个包含分割后的子字符串的列表。然后,可以使用tuple()函数将列表转换为元组。
下面是一个示例代码:
```python
string = "apple,banana,orange"
tuple_result = tuple(string.split(","))
print(tuple_result)
```
输出结果为:
```
('apple', 'banana', 'orange')
```
阅读全文