在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')