后台小程序开发的全方位指南
728
2022-11-02
64 - 你了解协程吗?
协程的概念
import asyncioasync def main(): print('hello') await asyncio.sleep(1) print('world') # python # asyncio.run(main())# jupyterawait main()
helloworld
协程中有哪两个运行任务的函数,如何使用
import asyncioimport timeasync def say_after(delay, what): await asyncio.sleep(delay) print(what) async def myfun(): print(f'开始时间: {time.strftime("%X")}') await say_after(1, 'hello') await say_after(2, 'world') print(f'执行完成: {time.strftime("%X")}') # python # asyncio.run(main())# jupyterawait myfun()
开始时间: 21:32:12helloworld执行完成: 21:32:15
'''create_task'''async def myfun1(): task1 = asyncio.create_task( say_after(1, 'hello') ) task2 = asyncio.create_task( say_after(2, 'world') ) print(f'开始时间: {time.strftime("%X")}') await task1 await task2 print(f'结束时间: {time.strftime("%X")}') await myfun1()
开始时间: 21:36:08helloworld结束时间: 21:36:10
65 - 请解释什么是线程锁,以及如何使用线程锁
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~