目录
本章将会讲解Python编程中,元组中不允许的操作 元组与列表之间的转换
# tu = (1 , 2 , 3)
# tu[1] = 5
# print(tu) #TypeError: 'tuple' object does not support item assignment 类型错误
tu = (1 , 2 , 3) #只能创建新的元组,而不能修改元组
tu1 =tu + (4,)
print(tu1)
tu1 = (1,2,3,["doudou",5]) #不许修改仅在一级元素是元组
tu1[3][0] = 4
print(tu1)
# tu2 = (1,2,3,("doudou",5)) #不可改
# tu2[3][0] = 4
# print(tu2)
# 元组所消耗的内存比列表要少
# 当你的元素不需要改变的时候 推荐使用元组
# 当你的元素需要改变的时候 推荐使用列表
#list --> tuple
li = [4,5,6]
print(tuple(li)) #得(4, 5, 6)
#tuple --> list
tu3 = (1,2,3)
print(list(tu3)) #得[1, 2, 3]
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有