美文网首页
asyncio async使用

asyncio async使用

作者: Do_More | 来源:发表于2018-07-01 10:21 被阅读0次
    import time
    import asyncio
    
    now = lambda : time.time()
    
    async def do_some_work(x):
        print('Waiting: ', x)
    
    start = now()
    coroutine = do_some_work(2)
    loop = asyncio.get_event_loop()
    
    loop.run_until_complete(coroutine)
    
    print('time: ', now() - start)
    

    相关文章

      网友评论

          本文标题:asyncio async使用

          本文链接:https://www.haomeiwen.com/subject/uvjcuftx.html