摘要:
要求: 注意:1、商品列表内的嵌套最好使用元组 2、显示产品的序号,可是使用enumerate,或者使用index 1 import time 2 goods = [{"huawei":1000},{"apple":10},{"banana":23},{"pen":140},{"wanju":78} 阅读全文
摘要:
一、列表的增删改查 1、增加:insert、append list.insert(i,"str") list.append("str") 2、删除:pop、remove、del list.pop() #默认删除最后一个 list.pop(i) #当i确定时,则删除i所在位置的内容 del list[ 阅读全文