import asyncio import time async def PrintSomething(): print("Hello ") await asyncio.sleep(2) print("World") asyncio.run(PrintSomething()) time.sleep(2) ...
確定! 回上一頁