我最近读了一篇关于使用数组作为函数输入的文章,并且只是想知道是否有可能使用类型提示来提示数组意味着是str
的数组?
例如:
def sterileInput(options = []) -> str:
# ^ I want to hint that this array contains strings
pass
您可以使用typing
模块
from typing import List
def sterileInput(options: List[str]) -> str:
pass