import asyncio class Hello: def __init__(self): print("init") # We cannot await anything in here async def method(self): print("method") ...
確定! 回上一頁