# 创建元组t=(1,2,3)t2=tuple([1,2,3])# 元组不能修改print(t[1:2])print(t[:])# 改变数据类型 list()变列表 tuple变字典print(list(t[1:2]))