gpt4 book ai didi

python - 在 Python 中创建一个空对象

转载 作者:IT老高 更新时间:2023-10-28 21:44:03 26 4
gpt4 key购买 nike

是否有在 Python 中定义空对象的快捷方式,或者您是否总是需要创建自定义空类的实例?

编辑:我的意思是一个可用于鸭子打字的空对象。

最佳答案

是的,在 Python 3.3 中 SimpleNamespace已添加

Unlike object, with SimpleNamespace you can add and remove attributes. If a SimpleNamespace object is initialized with keyword arguments, those are directly added to the underlying namespace.

例子:

import types

x = types.SimpleNamespace()
x.happy = True

print(x.happy) # True

del x.happy
print(x.happy) # AttributeError. object has no attribute 'happy'

关于python - 在 Python 中创建一个空对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19476816/

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