gpt4 book ai didi

python - 如何创建具有属性的内联对象?

转载 作者:IT老高 更新时间:2023-10-28 20:35:48 24 4
gpt4 key购买 nike

在 Javascript 中是:

var newObject = { 'propertyName' : 'propertyValue' };
newObject.propertyName; // returns "propertyValue"

但是 Python 中的相同语法会创建一个字典,这不是我想要的

new_object = {'propertyName': 'propertyValue'}
new_object.propertyName # raises an AttributeError

最佳答案

obj = type('obj', (object,), {'propertyName' : 'propertyValue'})

two kinds of type function uses .

关于python - 如何创建具有属性的内联对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1528932/

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