python使用tuple函数将列表转换为元组
在python中使用tuple()函数将列表转换为元组的方法
tuple:tuple()函数的作用是将列表转换为元组。
tuple()函数语法:
tuple( iterable )
参数:
iterable:表示需要转换为元组的可迭代序列。
tuple()函数使用方法:
List = [123, 'xyz', 'zara', 'abc'];
aTuple = tuple(List)
print "Tuple elements : ", aTuple
输出结果为:
Tuple elements : (123, 'xyz', 'zara', 'abc')
The End
发布于:2022-12-24,除非注明,否则均为
原创文章,转载请注明出处。
发表评论