Arn*_*d P 7 type-hinting python-3.x
我应该在 Python 3 中使用什么类型提示来描述我将以这 3 种方式使用的参数:
if len(arg):...for item in arg:...if item in arg:...您可以使用collections.abc.Collection
from collections.abc import Collection
def fn(arg: Collection[int]):
pass
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1430 次 |
| 最近记录: |