您好,登錄后才能下訂單哦!
前言
我最近都在寫一些Python 3.8的新功能介紹的文章,在自己的項目中也在提前體驗新的Python版本。為什么我對這個Python 3.8這么有興趣呢?主要是因為在Python 2停止官方維護的2020年來臨之前,Python 3.8是最后一個大版本,雖然還沒有公布Python 3.9的發(fā)布時間表,但是按過去的經(jīng)驗,我覺得至少等Python 3.8.4發(fā)布之后才可能發(fā)布Python 3.9.0,那會應(yīng)該已經(jīng)在2020年年末了。所以大家最近2年的話題都會是Python 3.8。本周五(2019-05-31)將發(fā)布3.8.0 beta 1,這幾天開發(fā)者們都在抓緊時間合并代碼趕上Python 3.8最后一班車。這幾天我將陸續(xù)分享幾個新合并的特性。今天先說 asyncio REPL
REPL
REPL是 Read-Eval-Print Loop 的縮寫,是一種簡單的,交互式的編程環(huán)境:
REPL對于學(xué)習(xí)一門新的編程語言非常有幫助,你可以再這個交互環(huán)境里面通過輸出快速驗證你的理解是不是正確。CPython自帶了一個這樣的編程環(huán)境:
python Python 3.7.1 (default, Dec 13 2018, 22:28:16) [Clang 10.0.0 (clang-1000.11.45.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> def a(): ... return 'A' ... >>> a() 'A'
不過官方自帶的這個環(huán)境功能非常有限,有經(jīng)驗的Python開發(fā)者通常會使用IPython,我寫的大部分文章里面的代碼都在IPython里面執(zhí)行的, 而且IPython從 7.0開始支持了Async REPL:
ipython defPython 3.7.1 (default, Dec 13 2018, 22:28:16) Type 'copyright', 'credits' or 'license' for more information IPython 7.5.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: def a(): ...: return 'A' ...: In [2]: a() Out[2]: 'A' In [3]: import asyncio In [4]: async def b(): ...: await asyncio.sleep(1) ...: return 'B' ...: In [5]: await b() Out[5]: 'B' In [6]: asyncio.run(b()) Out[6]: 'B'
簡單地說,就是在IPython里面可以直接使用await,而不必用 asyncio.run(b()) 。這個在官方REPL里面是不行的:
python Python 3.7.1 (default, Dec 13 2018, 22:28:16) [Clang 10.0.0 (clang-1000.11.45.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import asyncio >>> async def b(): ... await asyncio.sleep(1) ... return 'B' ... >>> await b() File "<stdin>", line 1 SyntaxError: 'await' outside function
是的,await只能在異步函數(shù)里面才可以使用。
Python 3.8的asyncio REPL
好消息是官方REPL也與時俱進,支持asyncio REPL了。具體細節(jié)可以看延伸閱讀鏈接1:
./python.exe -m asyncio asyncio REPL 3.8.0a4+ (heads/master:8cd5165ba0, May 27 2019, 22:28:15) [Clang 10.0.0 (clang-1000.11.45.5)] on darwin Use "await" directly instead of "asyncio.run()". Type "help", "copyright", "credits" or "license" for more information. >>> import asyncio >>> async def b(): ... await asyncio.sleep(1) ... return 'B' ... >>> await b() 'B' >>> async def c(): ... await asyncio.sleep(1) ... return 'C' ... >>> task = asyncio.create_task(c()) >>> await task 'C' >>> await asyncio.sleep(1)
注意激活REPL不是直接輸入python,而是要用 python -m asyncio ,另外那個 import asyncio 是激活REPL時自動幫你輸入的。
延伸閱讀
先別看代碼,看看你能不能實現(xiàn)這個功能 :yum:
https://github.com/python/cpython/pull/13472
總結(jié)
以上所述是小編給大家介紹的Python 3.8新特征之a(chǎn)syncio REPL,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。