元组用圆括号书写,是有序且不可更改的集合。创建元组:fruittuple = ("apple", "banana", "cherry")print(fruittuple)执行结果:('apple', 'banana', 'cherry')