python 将一个列表中的所有列表转化成元组
时间: 2023-12-16 16:02:15 浏览: 115
Python 将DataFrame数据转换成元组 Python源码
可以使用列表推导式和递归来实现:
```python
def list_to_tuple(lst):
return tuple(list_to_tuple(item) if isinstance(item, list) else item for item in lst)
```
使用方法:
```python
my_list = [1, [2, 3], [4, 5, [6, 7]]]
my_tuple = list_to_tuple(my_list)
print(my_tuple)
```
输出结果:
```
(1, (2, 3), (4, 5, (6, 7)))
```
阅读全文