创建包含水果名的元组:
x = tuple(("apple", "banana", "cherry"))print(x)
x = tuple(("apple", "banana", "cherry"))
print(x)
tuple() 函数创建元组对象。
tuple()
注释:您不能更改或删除元组中的项目。
请在 Python 元组 一章中学习有关集合的更多知识。
tuple(iterable)