Heim > Fragen und Antworten > Hauptteil
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?
世界只因有你2017-05-18 11:02:48
Function annotations ?
"Python 3 provides syntax to attach metadata to the parameters of a function declaration
and its return value."
某草草2017-05-18 11:02:48
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...
ringa_lee2017-05-18 11:02:48
http://python3-cookbook.readt...
python cookbook里面有详细描述,建议有空多看看这本书,还是很有帮助的。
phpcn_u15822017-05-18 11:02:48
这个是从python3.5开始就正式纳入的type hint,对于变量的类型进行标注,对于pycharm这样支持的IDE,可以给出更精准的代码提示和变量检查。
具体用法可以看https://docs.python.org/3/lib...