python object与dict互相转换

Posted zipon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python object与dict互相转换相关的知识,希望对你有一定的参考价值。

代码如下

# 将class转dict,以_开头的属性不要
def props(obj):
    pr = {}
    for name in dir(obj):
        value = getattr(obj, name)
        if not name.startswith(__) and not callable(value) and not name.startswith(_):
            pr[name] = value
    return pr
# 将class转dict,以_开头的也要
def props_with_(obj):
    pr = {}
    for name in dir(obj):
        value = getattr(obj, name)
        if not name.startswith(__) and not callable(value):
            pr[name] = value
    return pr
# dict转obj,先初始化一个obj
def dict2obj(obj,dict):
    obj.__dict__.update(dict)
    return obj

 

以上是关于python object与dict互相转换的主要内容,如果未能解决你的问题,请参考以下文章

python中基本类型的连接组合和互相转换

python字典转化成json格式。JSONEncoder和JSONDecoder两个类来实现Json字符串和dict类型数据的互相转换

python字典(dict)+常用方法操作+列表元组集合字典的互相转换

python 集合互相转换

python excel读写与dict转换

Python字符串元组列表字典互相转换的方法