摘要: #列表 #增 L1 = ['test1', 'test2', True, 1] #末尾增加 L1.append(False) print('L1:', L1) #任意位置添加 L1.insert(1, False) print('L1:', L1) #迭代添加,括号里是可迭代对象,末尾追加 L1.e 阅读全文
posted @ 2021-03-01 19:50 尐少 阅读(57) 评论(0) 推荐(0) 编辑