摘要: 1.列表,元组,字典,集合分别如何增删改查及遍历。 # 定义一个列表textList = ['cd','rm','mkdir','cat','tar'] # 增加textList.append('gunzip')textList.insert(2 , 'qzip') # 删除textList.pop 阅读全文
posted @ 2019-03-14 17:13 黄志鹏062 阅读(111) 评论(0) 推荐(0) 编辑