mu_tou_man

导航

 

2022年4月10日

摘要: #TUPLE########################### a = (1, 2, 3, 4, 5, "a") # tuple增删查(不支持改) # 增 b = (7, 8) c = a + b d = a.__add__(b) print(c) print(d) # 删 b = a[0:3] 阅读全文
posted @ 2022-04-10 21:57 mu_tou_man 阅读(23) 评论(0) 推荐(0) 编辑