11 lines
118 B
Python
11 lines
118 B
Python
|
# python merda
|
||
|
import asyncio
|
||
|
|
||
|
async def a():
|
||
|
print("a")
|
||
|
|
||
|
def b():
|
||
|
loop = asyncio.get_event_loop()
|
||
|
print(loop)
|
||
|
|
||
|
b()
|