Python tuple() 函数实例定义和用法语法参数值Python tuple() 函数实例创建包含水果名的元组: x = tuple(('apple', 'banana', 'cherry')) 定义和用法tuple() 函数创建元组对象。 注释:您不能更改或删除元组中的项目。 请在 “Python 元组” 一章中学习有关集合的更多知识。 语法tuple(iterable) 参数值 参数 描述 iterable 必需。序列,集合或可迭代对象。