import asyncio def callback(n): print(f"callback {n} invoked") async def main(loop): print("註冊callbacks") loop.call_later(0.2, callback, ...
確定! 回上一頁