If I don't use await to call the async function, I will get back a coroutine. In that case, what will happen for the coroutine? Do I have to manually execute the coroutine? Or this coroutine will continue to run itself in the background?
Using await
async def work():
result = await stuff()
Without await
async def work():
result = stuff()