import asyncio s = [] async def demo(): i = 0 while i < 10: print("Quick! You can do what you want to do.") a = input() s.append(a) await asyncio.sleep(2) ...
確定! 回上一頁