python 中字典dict[key],dict.get(key)和dict.setdefault(key)的区别
dict[key]在Python中。我们一般对于字典取值会有dict[key]的方法取值,但是如果键key不存在,则会出现报错例如:>>>a={'one':1,'two':2,'three':3}>>>a['one']1>>>a['four']Traceback(mostrecentcalllast):File"",line1,inKeyError:'four因为dict[key]的方式在无法判断