gpt4 book ai didi

python - 如何在Python3.7/3.8中使用通用namedtuple?

转载 作者:行者123 更新时间:2023-12-01 07:01:16 25 4
gpt4 key购买 nike

我尝试在 Python 3.7(和 3.8)中使用通用命名元组功能,但解释器会引发错误。我使用了不好的方法吗?

from typing import NamedTuple, TypeVar, Generic
from dataclasses import dataclass

@dataclass
class Person:
name: str
age: int


T = TypeVar("T")
class MyResult(NamedTuple, Generic[T]):
Body: T
Status: int


def func1() -> MyResult[Person]:
return MyResult(Person('asghar',12), 200)

引发以下错误:

Traceback (most recent call last):
File "/Users/kamyar/Documents/generic_named_tuple.py", line 16, in <module>
def func1() -> MyResult[Type[Person]]:
TypeError: 'type' object is not subscriptable

最佳答案

感谢@shynjax287,我使用了解决方法来修复代码:

from typing import NamedTuple, TypeVar, Generic, Type
from dataclasses import dataclass

@dataclass
class Person:
name: str
age: int


T = TypeVar("T")

class MyResult(NamedTuple):
Body: T
Status: int

class MyResultGeneric(MyResult, Generic[T]):
pass


def func1() -> MyResultGeneric[Person]:
return MyResultGeneric[Person](Person('asghar',12), 200)

print(func1().Body.name)

甚至 PyCharm 都知道返回类型并且自动完成工作正常!

关于python - 如何在Python3.7/3.8中使用通用namedtuple?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58621195/

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