如何制作嵌套字典并动态附加数据 [英] How to make a nested dictionary and dynamically append data

查看:143
本文介绍了如何制作嵌套字典并动态附加数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个循环给我三个变量

I have a loop giving me three variables

matteGroup
matteName
object

我想制作一个嵌套的表达式,包含所有数据,如:

I would like to make a nested dicionary holding all the data like:

dictionary{matteGroup: {matteName: obj1, obj2, ob3} }

我正在逐个检查对象,所以我想创建 matteGroup (如果不存在),创建 matteName 如果它不exixst,然后创建或附加对象的名称。
我尝试了很多解决方案,像普通的字典,defaultdict和我在网上发现的一些自定义类,但我没有能够正确地做到这一点。我有一个很好的嵌套我不能追加,反之亦然。

I am checking the objects one by one so I would like to create the matteGroup if it doesn't exist, create the matteName if it doesn't exixst and then create or append the name of the object. I tryed a lot of solution like normal dictionaries, defaultdict and some custom classes I found on the net, but I haven't been able to do it properly. I have a nice nesting I am not able to append, or vice versa.

这是循环

    dizGroup = {}
    dizName = {}

    for obj in mc.ls(type='transform'):
        if mc.objExists(obj + ('.matteGroup')):
            matteGroup = mc.getAttr(obj + ('.matteGroup'))
            matteName = mc.getAttr(obj + ('.matteName'))

            if matteGroup not in dizGroup:
                dizGroup[matteGroup] = list()
            dizGroup[matteGroup].append(matteName)

            if matteName not in dizName:
                dizName[matteName] = list()
            dizName[matteName].append(obj)

与此我分两个字典,但不是那么有用!
任何提示?

with this I get the two dictionaries separately, but is not so useful! Any hint?

谢谢

推荐答案

像这样

dizGroup = {}

for obj in mc.ls(type='transform'):
    if mc.objExists(obj + ('.matteGroup')):
        matteGroup = mc.getAttr(obj + ('.matteGroup'))
        matteName = mc.getAttr(obj + ('.matteName'))

        if matteGroup not in dizGroup:
            dizGroup[matteGroup] = {}

        if matteName not in dizGroup[matteGroup]:
            dizGroup[matteGroup][matteName] = []

        dizGroup[matteGroup][matteName].append(obj)

这篇关于如何制作嵌套字典并动态附加数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆