Python tuple() 函数

实例

创建包含水果名的元组:

x = tuple(('apple', 'banana', 'cherry'))

运行实例

定义和用法

tuple() 函数创建元组对象。

注释:您不能更改或删除元组中的项目。

请在 “Python 元组” 一章中学习有关集合的更多知识。

语法

tuple(iterable)

参数值

参数 描述
iterable 必需。序列,集合或可迭代对象。