在数组函数输入上使用类型提示



我最近读了一篇关于使用数组作为函数输入的文章,并且只是想知道是否有可能使用类型提示来提示数组意味着是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

相关内容

  • 没有找到相关文章