Skip to content

Instantly share code, notes, and snippets.

View yanbing2020's full-sized avatar
🏠
Working from home

Jeff Zhang yanbing2020

🏠
Working from home
View GitHub Profile
async def main():
coroutine1 = do_some_work(1)
coroutine2 = do_some_work(2)
coroutine3 = do_some_work(4)
tasks = [
asyncio.ensure_future(coroutine1),
asyncio.ensure_future(coroutine2),
asyncio.ensure_future(coroutine3)
]