Python Tuple 元組 tuple()方法
Python Tuple 元組 tuple()方法
Python 元組 tuple() 函數將列表轉換為元組。
語法
tuple()方法語法:
tuple( iterable )
參數
- iterable -- 要轉換為元組的可迭代序列。
返回值
返回元組。
實例
以下實例展示了 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 基礎語法
- Python 變量類型
- Python 運算符
- Python 函數
- Python 分而治之
- Python 攤銷分析
- Python3 數字(Number)
- Python exp() 函數
- Python max() 函數
- Python choice() 函數
- 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()方法