Asyncio module failing to create task

前端 未结 2 2053
遇见更好的自我
遇见更好的自我 2021-01-22 02:31

My Source Code:

import asyncio

async def mycoro(number):
    print(f\'Starting {number}\')
    await asyncio.sleep(1)
    print(f\'Finishing {number}\')
    retu         


        
2条回答
提交回复
热议问题