My Source Code:
import asyncio async def mycoro(number): print(f\'Starting {number}\') await asyncio.sleep(1) print(f\'Finishing {number}\') retu
Change the line
task = asyncio.Task(c)