黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python Tuple 元組 tuple()方法

Python Tuple 元組 tuple()方法

Python 元組 TuplePython 元組 Tuple

Python 元組 tuple() 函數(shù)將列表轉(zhuǎn)換為元組。

 

語(yǔ)法

tuple()方法語(yǔ)法:

tuple( iterable )

 

參數(shù)

  • iterable -- 要轉(zhuǎn)換為元組的可迭代序列。

 

返回值

返回元組。

 

實(shí)例

以下實(shí)例展示了 tuple()函數(shù)的使用方法:

實(shí)例 1

>>>tuple([1,2,3,4])
 
(1, 2, 3, 4)
 
>>> tuple({1:2,3:4})    #針對(duì)字典 會(huì)返回字典的key組成的tuple
 
(1, 3)
 
>>> tuple((1,2,3,4))    #元組會(huì)返回元組自身
 
(1, 2, 3, 4)

實(shí)例 2

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

以上實(shí)例輸出結(jié)果為:

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

Python 元組 TuplePython 元組 Tuple

下一節(jié):Python 字典 Dictionary

Python 教程

相關(guān)文章