Python 函数参数有冒号 -> 声明
type hint, 即类型提示。
官方网站:https://www.python.org/dev/peps/pep-0484/
def add(a,b) -> int:
return a+b
函数可以不加->表示动态定义。a b 数据类型不一定为int,也可以为float
加->表示静态定义。a b 数据类型为int
Python 函数参数有冒号 -> 声明
type hint, 即类型提示。
官方网站:https://www.python.org/dev/peps/pep-0484/
def add(a,b) -> int:
return a+b
函数可以不加->表示动态定义。a b 数据类型不一定为int,也可以为float
加->表示静态定义。a b 数据类型为int
本文标题:Python定义函数加入箭头->
本文链接:https://www.haomeiwen.com/subject/ejqegltx.html
网友评论