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()方法