일부 기본 인터페이스를 작성하기 위해 추상 기본 클래스를 사용하여 Python의 유형 주석을 시도하고 있습니다. 의 가능한 유형의 주석을 할 수있는 방법이 있나요 *args
과 **kwargs
?
예를 들어, 함수에 대한 합리적인 인수가 하나 int
또는 두 개 라는 것을 어떻게 표현할 수 int
있습니까? type(args)
제공 Tuple
내 생각 엔이 같은 유형에 주석을했다, 그래서 Union[Tuple[int, int], Tuple[int]]
,하지만이 작동하지 않습니다.
from typing import Union, Tuple
def foo(*args: Union[Tuple[int, int], Tuple[int]]):
try:
i, j = args
return i + j
except ValueError:
assert len(args) == 1
i = args[0]
return i
# ok
print(foo((1,)))
print(foo((1, 2)))
# mypy does not like this
print(foo(1))
print(foo(1, 2))
mypy의 오류 메시지 :
t.py: note: In function "foo":
t.py:6: error: Unsupported operand types for + ("tuple" and "Union[Tuple[int, int], Tuple[int]]")
t.py: note: At top level:
t.py:12: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:14: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:15: error: Argument 1 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
t.py:15: error: Argument 2 to "foo" has incompatible type "int"; expected "Union[Tuple[int, int], Tuple[int]]"
mypy는 tuple
호출 자체에 있을 것으로 기대하기 때문에 함수 호출에 대해 이것을 좋아하지 않는 것이 좋습니다 . 포장 풀기 후 추가하면 이해할 수없는 입력 오류가 발생합니다.
어떻게 하나의 분별 유형을 주석 않습니다 *args
와 **kwargs
?
Optional
무엇입니까? 파이썬에 대해 어떤 변화가 있었습니까? 아니면 마음이 바뀌 었습니까?None
기본값 으로 인해 여전히 엄격하게 필요하지 않습니까?