型アノテーションは単体に対して使えない。
下記のように事前に定義して書くしかなさそう。
参考:PEP526
動く
a: int
b: str
a, b = 1, "hello"
from typing import Tuple
c: Tuple[int,str] =1, "hello"
これらはできない
(a,b) :Tuple[int,str] = 1, "hello"
a, b :int, str = 1, "hello"
Go to list of users who liked
More than 3 years have passed since last update.
型アノテーションは単体に対して使えない。
下記のように事前に定義して書くしかなさそう。
参考:PEP526
a: int
b: str
a, b = 1, "hello"
from typing import Tuple
c: Tuple[int,str] =1, "hello"
(a,b) :Tuple[int,str] = 1, "hello"
a, b :int, str = 1, "hello"
Register as a new user and use Qiita more conveniently
Go to list of users who liked