PYTHON CODING
- waclaw_koscielniak
- Sep 5
- 1 min read
import asyncio
async def f():
return 10
async def g():
x = await f()
return x + 5
print(asyncio.run(g()))
[Running] python3 -u "/Users/name/test/test374.py"
15
[Done] exited with code=0 in 0.119 seconds

Try to run it.