您好,登錄后才能下訂單哦!
前言
我最近都在寫一些Python 3.8的新功能介紹的文章,在自己的項目中也在提前體驗新的Python版本。為什么我對這個Python 3.8這么有興趣呢?主要是因為在Python 2停止官方維護的2020年來臨之前,Python 3.8是最后一個大版本,雖然還沒有公布Python 3.9的發布時間表,但是按過去的經驗,我覺得至少等Python 3.8.4發布之后才可能發布Python 3.9.0,那會應該已經在2020年年末了。所以大家最近2年的話題都會是Python 3.8。本周五(2019-05-31)將發布3.8.0 beta 1,這幾天開發者們都在抓緊時間合并代碼趕上Python 3.8最后一班車。這幾天我將陸續分享幾個新合并的特性。今天先說 asyncio REPL
REPL
REPL是 Read-Eval-Print Loop 的縮寫,是一種簡單的,交互式的編程環境:
REPL對于學習一門新的編程語言非常有幫助,你可以再這個交互環境里面通過輸出快速驗證你的理解是不是正確。CPython自帶了一個這樣的編程環境:
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'
不過官方自帶的這個環境功能非常有限,有經驗的Python開發者通常會使用IPython,我寫的大部分文章里面的代碼都在IPython里面執行的, 而且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只能在異步函數里面才可以使用。
Python 3.8的asyncio REPL
好消息是官方REPL也與時俱進,支持asyncio REPL了。具體細節可以看延伸閱讀鏈接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時自動幫你輸入的。
延伸閱讀
先別看代碼,看看你能不能實現這個功能 :yum:
https://github.com/python/cpython/pull/13472
總結
以上所述是小編給大家介紹的Python 3.8新特征之asyncio REPL,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。