我无法在json.loads()
中使用空字符串。
Python 3.6.4 (default, Jan 5 2018, 02:13:53)
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> json.loads('')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.6/json/__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.6/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.6/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
有没有办法阻止JSDONDecodeError
并只返回默认值(例如空dict
,list
或None
)?如果json.loads()
处理空字符串?
我的问题的背景是我读取文件内容并用json.loads
解析它们。但有时文件是空的(size=0
)。这没关系,也不是错误。
但在使用json.loads()
之前,我不想检查文件大小或内容大小。
答案 0 :(得分:2)
使用合并来传递有效的内容。
json.loads('' or 'null')