2019年3月4日

字典(dict)操作

摘要: <1>修改元素 info: <2>添加元素 info: <3>删除元素 del 删除指定的元素 info: del 删除整个字典 info: clear 清空整个字典 info: <4>访问元素 若访问不存在的键,则会报错: 在我们不确定字典中是否存在某个键而又想获取其值时,可以使用get方法,还可 阅读全文

posted @ 2019-03-04 17:23 crystal1126 阅读(690) 评论(0) 推荐(0) 编辑

列表(list)常见操作

摘要: <1>添加元素 append():向列表添加元素 extend():将另一个集合中的元素逐一添加到列表中 a=[1,2,3,4,5,6] b=[7,8] a.append(b) print(a) a.extend(b) print(a) 结果: [1, 2, 3, 4, 5, 6, [7, 8]] 阅读全文

posted @ 2019-03-04 15:35 crystal1126 阅读(217) 评论(0) 推荐(0) 编辑

导航