4
我讀過關於新的Python「關鍵字」async
和await
。然而,它們既不是真正的關鍵字,也不是保留在命名空間中什麼是Python中的異步?
>>> import keyword
>>> keyword.iskeyword("async")
False
>>> async
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'async' is not defined
在這個例子中我希望爲關鍵字True
和SyntaxError
。
那麼,究竟是Python中的async
?怎麼運行的?
'async'只適用於Python 3.5。這是你使用的版本嗎? –
'async'和'await'並不是真正的關鍵字,但它們將在Python 3.7中。 – vaultah
我使用Python 3.6.0 –