在Python中,要定义一个协程函数,您需要使用async def
关键字而不是普通的def
。这是一个简单的例子:
async def my_coroutine(): print("This is a coroutine function.") await asyncio.sleep(1) print("Coroutine finished.")
在这个例子中,我们使用async def
定义了一个名为my_coroutine
的协程函数。在函数体内,我们可以使用await
关键字调用其他协程函数或异步操作。注意,协程函数必须使用await
调用其他协程,否则它们将不会真正执行。
要运行这个协程,您需要将其放入一个事件循环中,如下所示:
import asyncio async def main(): await my_coroutine() asyncio.run(main())
在这个例子中,我们创建了一个名为main
的协程,并在其中调用了my_coroutine
。然后,我们使用asyncio.run()
函数来运行事件循环并执行main
协程。