这是一个例子:
from typing import TypedDict
class Foo(TypedDict):
a: str
b: int
foo = Foo(a='2', b=4)
for key in foo:
print(foo[key])
我明白了
main.py:10: note: Revealed type is 'Any'
main.py:10: error: TypedDict key must be a string literal; expected one of ('a', 'b')
Found 1 error in 1 file (checked 1 source file)
我觉得这很令人惊讶 - 难道不知道
key
是 foo
的键之一,因此 foo[key]
应该是有效的吗?
游乐场网址:https://mypy-play.net/?mypy=latest&python=3.9&gist=8972284897f25314f9c790eab4cb8548
我认为这是here讨论过的已知问题。如果您希望它现在起作用,只需尝试 # type:ignore 即可覆盖警告。
from typing import TypedDict
class Foo(TypedDict):
a: str
b: int
foo = Foo(a='2', b=4)
for key in foo:
print(foo[key]) # type: ignore
游乐场网址:https://mypy-play.net/?mypy=latest&python=3.9&gist=85e30e0187088219797a283c31d7ec7c