gpt4 book ai didi

python-3.x - python 3 :中 `def twoSum(self, nums: List[int], target: int) -> List[int]:`的机制是什么

转载 作者:行者123 更新时间:2023-12-03 16:51:01 29 4
gpt4 key购买 nike

我在python3中找到了如下代码:

def twoSum(self, nums: List[int], target: int) -> List[int]:
return sum(nums)

据我所知,python def ,我们只需要遵循:
def twoSum(self, nums, target):
return sum(nums)

什么是 nums: List[int], target: int->List[int]方法?那些是python 3的新特性吗?我从来没有见过那些。

谢谢,

最佳答案

from typing import List

def twoSum(nums: List[int], target: int) -> List[int]:
print(nums, target)

链接: https://docs.python.org/3/library/typing.html

注意 Python 运行时不强制执行函数和变量类型注释。它们可以被第三方工具使用,例如类型检查器、IDE、linter 等。

链接: https://code.visualstudio.com/docs/python/linting

关于python-3.x - python 3 :中 `def twoSum(self, nums: List[int], target: int) -> List[int]:`的机制是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56635388/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com