- 3
- 0
- 约1.19万字
- 约 48页
- 2019-10-24 发布于山东
- 举报
2.5 字典 (7)删除元素和字典 可以使用del语句删除指定键的元素或整个字典 使用clear( )方法来删除字典中所有元素 使用pop ()方法删除并返回指定键的元素。 例如 del a_dict[‘server’]将删除键值为‘server’的元素 a_dict.pop(‘database’)将删除并返回健为‘database’的元素 a_dict.clear()将删除字典中所有元素,del a_dict将删除整个字典。 del a_dict[server] a_dict {database: blog, user: mark} a_dict.pop(database) blog a_dict {user: mark} a_dict.clear( ) a_dict { } del a_dict a_dict Traceback (most recent call last): File pyshell#103, line 1, in module a_dict NameError: name a_dict is not defined a_dict= {database: blog, server: db.diveintopython3.org, user: mark} 2.6 The application of array 【EG2-1】S
您可能关注的文档
- (7)旅游地理复习.ppt
- (第十单元)万以内数的认识的复习课.ppt
- [高二英语]选修8-unit5-Using-language教师版.ppt
- “尚德守法-共治共享食品安全”主题班会.pptx
- 《北方和南方的人文差异》.ppt
- 《毕业季、毕业祝福》.ppt
- 《车床安全教育-》课件.pptx
- 《定风波》ppt课件剖析.ppt
- 《简单机械》PPT(第四课时)优秀课件.pptx
- 《民航概论》第7章--适航和维修.ppt
- 2026年山东省滨州市惠民县中考化学一模试卷(含答案).pdf
- 2026年山东省济南市历城区中考化学二模试卷(含答案).pdf
- 2026年山东省烟台市福山区中考化学模拟试卷(含答案).pdf
- 2026年山东省临沂市郯城县中考化学一模(含答案).pdf
- 2026年四川省德阳市中江县中考化学二诊试卷(含答案).pdf
- 2026年四川省绵阳市梓潼县中考化学二模试卷(含答案).pdf
- 2026年新疆乌鲁木齐市沙依巴克区中考化学适应性试卷(含答案).pdf
- 2026年重庆市永川区中考化学质检试卷(含答案).pdf
- 2026年重庆市第一中学校中考化学全真模拟试卷(二)(含答案).pdf
- 安徽池州市第二中学等校2025-2026学年高一下学期期中物理试卷A(含答案).pdf
原创力文档

文档评论(0)