python使用tuple函数将列表转换为元组 python列表和元组的转换

主机教程 建站分享 2年前 (2022-11-19) 166次浏览

文章摘要:python使用tuple函数将列表转换为元组 python列表和元组的转换

在python中使用tuple()函数将列表转换为元组的方法 tuple: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')


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python使用tuple函数将列表转换为元组 python列表和元组的转换
文章链接:http://www.7966.org/post/13379.html
转载请注明出处

喜欢 (0)