假定字典为dics = {0:'a', 1:'b', 'c':3}
1.从字典中取值,当键不存在时不想处置异常
[办法] dics.get('key', 'not found')
[例如]
image
[解释] 当键'key'不存在是,打印'not found'(即想要处置的信息),当存在是输出键值。
【其他处理计划一】
if key in dics:
print dics[key]
else:
print 'not found!!'
【其他处理计划二】
try:
print dics[key]
except KeyError:
print 'not found'
例子:
image
2.从字典中取值,若找到则删除;当键不存在时不想处置异常
[办法] dics.pop('key', 'not found')
[例如]
image
[解释] 当键'key'不存在是,打印'not found'(即想要处置的信息),当存在是输出键值,并且去除该健。
3.给字典添加一个条目。假如不存在,就指定特定的值;若存在,就算了。
[办法] dic.setdefault(key, default)
[例如]
image
- update
a = {'a':1, 'b':2}
a.update({'c':3})
a
{'a': 1, 'c': 3, 'b': 2}
a.update({'c':4})
a
{'a': 1, 'c': 4, 'b': 2}