In [1]:
import asyncio
async def test_coroutine():
    await asyncio.sleep(3)
    return 2.5

In [2]:
test_coroutine()


Out[2]:
<coroutine object test_coroutine at 0x7f7136ae78e0>

In [ ]: