<languages />
❮内置功能
创建一个包含水果名称的元组:
x = tuple(('apple', 'banana', 'cherry'))
The tuple() 函数创建一个元组对象。
tuple()
注意: 您不能更改或删除元组中的项目。
在本章中阅读有关集合的更多信息 Python元组
.
tuple(iterable)