gpt4 book ai didi

python - 从 __init__ 分配属性的快捷方式

转载 作者:太空宇宙 更新时间:2023-11-04 01:50:45 25 4
gpt4 key购买 nike

我经常发现自己直接从传递给 __init__ 的值中分配一个类的属性:

class SomeThing:
def __init__(self, a, b, c, d, e ...):
self.a = a
self.b = b
self.c = c
...

有什么方法可以简化这个吗?

最佳答案

Dataclasses专为这种__init__ 函数而设计。

有了它们,您可以像这样编写您的类:

@dataclass
class SomeThing:
a: int
b: str
c: float
d: bool
e: list

# __init__ will be generated automatically based on fields declaration above

关于python - 从 __init__ 分配属性的快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58077889/

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