美文网首页
JSON解析时出现:TypeError: the JSON ob

JSON解析时出现:TypeError: the JSON ob

作者: 丙吉 | 来源:发表于2020-05-28 14:28 被阅读0次

    数据框中某个字段为字典型的str类型,所以用json把它给解析下。结果就出现了如下报错:

    TypeError: the JSON object must be str, bytes or bytearray, not NoneType

    然后把用 x!= '' 进行过滤,但过滤不出相关问题,最后用 

    x is not None 可以过滤出,可以解决如上问题:

    详见:

    https://blog.csdn.net/qq_36330643/article/details/81185217

    相关文章

      网友评论

          本文标题:JSON解析时出现:TypeError: the JSON ob

          本文链接:https://www.haomeiwen.com/subject/qgxaahtx.html