欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python tuple什么意思

程序员文章站 2022-04-16 13:14:48
...

python tuple什么意思

python tuple什么意思?

python tuple即元组,tuple()函数将列表转换为元组。

tuple()方法语法:

tuple( seq )

参数

seq -- 要转换为元组的序列。

返回值

返回元组。

以下实例展示了 tuple()函数的使用方法:

实例 1

>>>tuple([1,2,3,4])
 
(1, 2, 3, 4)
 
>>> tuple({1:2,3:4})    #针对字典 会返回字典的key组成的tuple
 
(1, 3)
 
>>> tuple((1,2,3,4))    #元组会返回元组自身
 
(1, 2, 3, 4)

实例 2

#!/usr/bin/python
 
aList = [123, 'xyz', 'zara', 'abc'];
aTuple = tuple(aList)
 
print "Tuple elements : ", aTuple

以上实例输出结果为:

Tuple elements :  (123, 'xyz', 'zara', 'abc')

相关推荐:《Python教程

以上就是python tuple什么意思的详细内容,更多请关注其它相关文章!

相关标签: python tuple