标签:class 创建 操作 元组 code 不能 基础 相互转换 list
t_c0 = ()
print(type(t_c0))
t_c1 = (100) #注意此创建方式新建的不是元组
print(type(t_c1))
t_c2 = (100, )
print(type(t_c2))
t_c3 = 100,
print(type(t_c3))
t_c4 = 100, 200, 300
print(type(t_c4))
t_c5 = tuple()
print(t_c5)
t_z0 = (1, 2, 3)
print(list(t_z0))
t_z1 = [1, 2, 3]
print(tuple(t_z1))
t_z3 = (1, 2, 3)
t_z4 = (4, 5, 6)
print(t_z3 + t_z4)
print(t_z3 * 2)
del t_z3
标签:class 创建 操作 元组 code 不能 基础 相互转换 list
原文地址:https://www.cnblogs.com/TK-tank/p/12345366.html