python json.loads('123')会发生异常吗?

很多时候我们喜欢使用python的try except捕获异常,但是有些时候,会有些出乎意料,废话少说,看下面的程序。

import json
import traceback
s = '123'
dic = dict()
try:
    dic = json.loads(s)
except:
    traceback.print_exc()
if 'attr' in dic:
    print 'success'
else:
    print 'fail'

上面的程序看似万无一失,不可能发生什么崩溃的问题,但是的确发生的崩溃,异常如下:

    if 'attr' in dic:
TypeError: argument of type 'int' is not iterable

异常说的是:不能用’attr’去一个int数值里面去查。
也就是说:json.loads(‘123’)不会有任何异常。
所以在json.loads后面,还需要加上判断类型:

if type(dic) is not dict:
    sys.exit(0)

怎么样呢?

你可能感兴趣的:(python)