# tuple 元组,特点:不可变的列表 t = ("aaa", "ccc", "bbb") print(t) print(t[1:3]) # 元组如果只有一个元素(*),需要在元素的末尾添加一个逗号 # t = ("哈哈") # ()默认是优先级 # print(t) # print(type(t)) # 关于元组的不可变(坑),内存地址不能变 t = (1,2,3, ["呵呵", "么么"]) t[3].append("大大大") print(t)
标签:05,元素,元组,print,内存地址,append From: https://www.cnblogs.com/yizhipanghu/p/17635263.html