码迷,mamicode.com
首页 > 编程语言 > 详细

python object与dict互相转换

时间:2017-12-21 11:58:13      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:value   star   ret   tar   post   not   and   dir   div   

代码如下

# 将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互相转换

标签:value   star   ret   tar   post   not   and   dir   div   

原文地址:http://www.cnblogs.com/zipon/p/8078763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!