Sized、Iterable 和 Container 的 Python 类型提示

Arn*_*d P 7 type-hinting python-3.x

我应该在 Python 3 中使用什么类型提示来描述我将以这 3 种方式使用的参数:

  • if len(arg):...
  • for item in arg:...
  • if item in arg:...

Arn*_*d P 4

您可以使用collections.abc.Collection

from collections.abc import Collection

def fn(arg: Collection[int]):
    pass
Run Code Online (Sandbox Code Playgroud)