top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    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.
Try to run it.














 
 
 

1 Comment


Guest
Sep 05

Try to run it.

Like
bottom of page