Python并发编程系列之协程 (2)

  定义协程比定义进程或者线程还要简单,你只需要在普通函数定义时在“def”关键字前面加上一个“asyncio”,即可把普通函数定义为一个协程:

async def firstCorouctine(path=‘a.txt’): print(‘协程执行开始……’) await asyncio.sleep(1) print(‘协程执行结束……’)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgwxxj.html