跳到主要内容

Python里面如何实现tuple和list的转换?

参考答案:

在Python中,你可以使用内建函数tuple()list()来实现tuple和List之间的转换。

将List转换为Tuple:

list1 = [1, 2, 3, 4, 5]
tuple1 = tuple(list1)
print(tuple1)  # 输出:(1, 2, 3, 4, 5)

将Tuple转换为List:

tuple1 = (1, 2, 3, 4, 5)
list1 = list(tuple1)
print(list1)  # 输出:[1, 2, 3, 4, 5]

这些函数都是Python内建的,不需要额外导入任何模块就可以使用。