async def fetch(self, url: str, keys: object, repeat: int) -> (int, object):
dosomething()
return None
Ich habe eine solche Aussage gefunden, als ich mir die Programme anderer Leute angesehen habe, konnte aber keine Erklärung für „->“ finden.
Ich habe Pfeilfunktionen gefunden, die ähnlich sind, aber unterschiedlich aussehen.
Welches Symbol ist das? Oder wo soll ich nachschauen?
Function annotations ?
"Python 3 provides syntax to attach metadata to the parameters of a function declaration
and its return value."
Stackoverflow有了。
What does -> mean in Python function definitions?
Python 3 extends the feature by allowing you to attach metadata to functions describing their parameters and return values.
简单的说-> 就是为了告诉用户 具体参数和参数的类型。
详细的可以看:PEP3107
https://www.python.org/dev/pe...
只是提示该函数 输入参数 和 返回值 的
数据类型
方便程序员阅读代码的。
http://python3-cookbook.readt...
python cookbook里面有详细描述,建议有空多看看这本书,还是很有帮助的。
这个是。。。提示返回值类型的?
这个是从python3.5开始就正式纳入的type hint,对于变量的类型进行标注,对于pycharm这样支持的IDE,可以给出更精准的代码提示和变量检查。
具体用法可以看https://docs.python.org/3/lib...