pythontuple转list
时间: 2023-09-09 16:06:55 浏览: 103
python初学list与tuple教程
在 Python 中,可以使用内置的 `list()` 函数将元组转换为列表。下面是一个示例代码:
```python
tuple_example = (1, 2, 3, 4, 5)
list_from_tuple = list(tuple_example)
print(list_from_tuple)
```
这将输出 `[1, 2, 3, 4, 5]`,元组转换为列表的结果。
阅读全文