共计 374 个字符,预计需要花费 1 分钟才能阅读完成。
要向字典中添加值,可以使用赋值操作符(=)或者使用字典的 update()
方法。
使用赋值操作符(=):
my_dict = {} # 创建一个空字典
my_dict['key1'] = 'value1' # 向字典中添加键值对
my_dict['key2'] = 'value2'
使用 update()
方法:
my_dict = {} # 创建一个空字典
my_dict.update({'key1': 'value1', 'key2': 'value2'}) # 使用字典的 update()方法进行添加
注意:如果要添加的键已存在于字典中,赋值操作符(=)会更新对应的值,而 update()
方法不会更新值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完