摘要: ``` import simplejson a = """{"a":"\\""}""" b = """{"a":"\\'"}""" print simplejson.loads(a) print simplejson.loads(b) 输出: {'a': '"'} simplejson.errors.JSONDecodeError: In 阅读全文
posted @ 2019-08-30 12:37 huim 阅读(5306) 评论(0) 推荐(0) 编辑