博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 字典 update() 方法
阅读量:5311 次
发布时间:2019-06-14

本文共 1052 字,大约阅读时间需要 3 分钟。

描述

Python 字典 update() 方法用于更新字典中的键/值对,可以修改存在的键对应的值,也可以添加新的键/值对到字典中。

用法与 Python dict() 函数相似。

语法

update() 方法语法:

D.update(key/value)

参数

  • key/value -- 用于更新字典的键/值对,此处可以表示键/值对的方法有很多,请看实例。

返回值

该方法没有任何返回值。

实例

以下实例展示了 update() 方法的使用方法:

# !/usr/bin/python3D = {'one': 1, 'two': 2}D.update({'three': 3, 'four': 4})  # 传一个字典print(D)D.update(five=5, six=6)  # 传关键字print(D)D.update([('seven', 7), ('eight', 8)])  # 传一个包含一个或多个元祖的列表print(D)D.update(zip(['eleven', 'twelve'], [11, 12]))  # 传一个zip()函数print(D)D.update(one=111, two=222)  # 使用以上任意方法修改存在的键对应的值print(D)

以上实例输出结果为:

{'one': 1, 'three': 3, 'two': 2, 'four': 4}{'one': 1, 'four': 4, 'six': 6, 'two': 2, 'five': 5, 'three': 3}{'one': 1, 'eight': 8, 'seven': 7, 'four': 4, 'six': 6, 'two': 2, 'five': 5, 'three': 3}{'one': 1, 'eight': 8, 'seven': 7, 'four': 4, 'eleven': 11, 'six': 6, 'twelve': 12, 'two': 2, 'five': 5, 'three': 3}{'four': 4, 'seven': 7, 'twelve': 12, 'six': 6, 'eleven': 11, 'three': 3, 'one': 111, 'eight': 8, 'two': 222, 'five': 5}

zip() 函数:

转载于:https://www.cnblogs.com/geogre123/p/10831062.html

你可能感兴趣的文章
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>