• 导入json文件报错,TypeError expected string or buffer


    导入json文件报错,TypeError expected string or buffer

    原因:用字符串赋值后,python会把双引号转换为单引号

    import json
    
    data = [{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}]
    print(type(data),data)
    

    执行结果:

    <class 'list'> [{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}]

    但是了,json是不支持单引号的。可以用下面的方法转换

    json_string=json.dumps(s)
    
    python_obj=json.loads(json_string)
    

    实例:

    import json
    
    data = [{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}]
    json_string = json.dumps(data) #dumps序列化为str,所以保证了双引号没有变为单引号
    python_obj=json.loads(json_string) #oads反序列化,所以与原data相同
    print(type(json_string),json_string)
    print(type(python_obj),python_obj)
    

    执行结果:

    <class 'str'> [{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}]
    <class 'list'> [{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}]
  • 相关阅读:
    005 HTML+CSS(Class027
    004 HTML+CSS(Class024
    003 HTML+CSS(Class011
    002HTML+CSS(class007-010)
    001HTML+CSS(class001-006)
    021 vue路由vue-router
    020 Vue 脚手架CLI的使用
    019 Vue webpack的使用
    018 vue的watch属性
    017 vue的插槽的使用
  • 原文地址:https://www.cnblogs.com/pinpin/p/10619471.html
Copyright © 2020-2023  润新知