Python Tuple tuple() 方法

返回 Python 元组


描述

Python 元组 tuple() 方法将列表转换为元组。


语法

tuple()方法语法:

tuple(iterable)

参数

  • iterable -- 要转换为元组的可迭代序列。

返回值

返回元组。

实例

以下实例展示了 tuple()方法的使用方法:

#!/usr/bin/python
 
aList = [123, 'xyz', 'zara', 'abc'];
aTuple = tuple(aList)
 
print "Tuple elements : ", aTuple

运行示例

上述代码执行结果如下:

Tuple elements :  (123, 'xyz', 'zara', 'abc')

返回 Python 元组

查看笔记

扫码一下
查看教程更方便