Python Tuple 元組 tuple()方法
Python Tuple 元組 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')
相關(guān)文章
- Python 簡(jiǎn)介
- Python 基礎(chǔ)語(yǔ)法
- Python 變量類型
- Python 運(yùn)算符
- Python 函數(shù)
- Python 分而治之
- Python 攤銷分析
- Python3 數(shù)字(Number)
- Python exp() 函數(shù)
- Python max() 函數(shù)
- Python choice() 函數(shù)
- Python File next() 方法
- Python File seek() 方法
- Python os.fstat() 方法
- Python os.major() 方法
- Python os.makedev() 方法
- Python os.remove() 方法
- Python os.path() 模塊
- Python decode()方法
- Python List min()方法