Python Tuple(元组) tuple()方法
Posted 程序先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Tuple(元组) tuple()方法相关的知识,希望对你有一定的参考价值。
描述
Python 元组 tuple() 函数将列表转换为元组。每组词 www.cgewang.com
语法
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 Tuple(元组) tuple()方法的主要内容,如果未能解决你的问题,请参考以下文章