import asyncio async def main(): print("Hello ...") await asyncio.sleep(1) print("... World!") # Python 3.7+ asyncio.run(main()) ...
確定! 回上一頁