python笔记(2) 继续List: 删除元素: 复制代码 代码如下: a =[1, 2, 3, 4] a[2:3] = [] [1, 2, 4] del a[2] python编程 2022-04-09 116 点赞 1 评论 175 浏览