List[int]) -> List[int]——python函数声明中的类型提示

今天在使用python解leetcode题目时突然遇到

def runningSum(self, nums: List[int]) -> List[int]:

查阅官方手册得知
这是函数声明中的“类型提示”(或“功能注释”;这些功能自Python 3.0起可用)。

-> List[int] 表示该函数应返回一个整数列表。
List[int]) -> List[int]——python函数声明中的类型提示_第1张图片
详见官方文档

你可能感兴趣的:(Python,leetcode,算法,职场和发展)