Python Operator

Fariba Laiq 2022年5月17日
Python Operator

python 中的箭头运算符,用 -> 表示,是一个返回值注解,是函数注解的一部分。函数注释仅在 Python 3.x 中受支持。

主要目的是提供文档化代码和标准方法,将数据类型提示与功能参数和返回值相关联。

函数注释不会在运行时进行评估。它们仅在编译时考虑。这些注释在使用诸如 mypy 之类的第三方库时很方便。函数注释没有定义变量的静态类型。

即使值和注释数据类型不匹配,代码也不会抛出异常。虽然在某些 IDE 中,例如 Pycharm,如果函数注释中指定的值类型和类型不匹配,则会显示警告。

注释仅用作预期数据类型的提示,只是为了让开发人员通过提供有关预期数据类型和函数返回类型的信息来理解代码。所以 -> 运算符注释了返回值的类型。

我们可以通过在函数名称中写入 .__annotations__ 来打印函数注释,如下面的代码所示。

在这段代码中,int 是函数的返回值注解,使用 -> 运算符指定。

示例代码:

#python 3.x
def add(a, b) -> int: 
       return a+b
print(add(2,3))
print(add.__annotations__)

输出:

# python 3.x
5
{'return': <class 'int'>}
Author: Fariba Laiq
Fariba Laiq avatar Fariba Laiq avatar

I am Fariba Laiq from Pakistan. An android app developer, technical content writer, and coding instructor. Writing has always been one of my passions. I love to learn, implement and convey my knowledge to others.

LinkedIn

相关文章 - Python Operator