gpt4 book ai didi

python - 字典创建中的可选字典项

转载 作者:行者123 更新时间:2023-11-28 22:01:43 25 4
gpt4 key购买 nike

我有一个返回字典的函数:

 def to_dict(self):
return dict({'identification': self.identifier,
'information': self.information,
'nodes': {e.position: e.to_dict for e in self.children}
})

有没有办法选择性地添加每个 k/v?这不起作用,例如:

def to_dict(self):
return dict({'identification': self.identifier,
'information': self.information,
'nodes': {e.position: e.to_dict for e in self.children} if self.children
})

有没有一种方法可以添加字典创建的可选部分,而不必为每个变体构建一个单独的字典?有没有更好的方法来做到这一点?

最佳答案

在本地存储字典,在返回之前用你的额外信息更新它:

def to_dict(self):
retval = {'identification': self.identifier,
'information': self.information,
}
if self.children:
retval['nodes'] = {e.position: e.to_dict for e in self.children}
return retval

我在示例中删除了 dict() 构造函数,它完全是多余的。但是因为您所有的键也是有效的 Python 标识符,您可以通过使用 dict() 构造函数和关键字参数以稍微更紧凑的方式定义您的字典:

def to_dict(self):
retval = dict(identification=self.identifier,
information=self.information)
if self.children:
retval['nodes'] = {e.position: e.to_dict for e in self.children}
return retval

关于python - 字典创建中的可选字典项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12641029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com