asyncio 是Python 3.4版本引入的標準庫,直接內建了對非同步IO的支援。 import asyncio @asyncio.coroutine def func1(): print(1) yield from ...
確定! 回上一頁