在 Python 中更新字典
您可以通过下面简单示例中所示的方式添加新条目或键值对、修改现有条目或删除现有条目来更新字典 −
示例
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'} dict['Age'] = 8; # update existing entry dict['School'] = "DPS School"; # Add new entry print "dict['Age']: ", dict['Age'] print "dict['School']: ", dict['School']
输出
执行上述代码时,会产生以下结果 −
dict['Age']: 8 dict['School']: DPS School
广告