Administrator
2025-06-11 01696a5d8c2c3cf3062aa6a8ccbf123547c2dbf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import asyncio
import time
 
 
async def coroutine_function():
    # print("Start coroutine function")
    time.sleep(1)
    # print("Coroutine function completed")
 
 
async def main():
    print("Start main")
    asyncio.gather(
        coroutine_function()
    )
    print("Main completed")
 
 
main()