Home / Questions / Other Async event loop से coroutine run करने का modern तरीका क्या है? Other 0 Views Verified Async event loop से coroutine run करने का modern तरीका क्या है? #python #sqlite #sql #backend #automation #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified async.run_loop(main()) async.run_loop(main()) Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified loop.run_async(main()) loop.run_async(main()) Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer import asyncio asyncio.run(main()) import asyncio asyncio.run(main()) Additional Explanation asyncio.run() top-level coroutine execute करता है।
Verified asyncio.start(main()) asyncio.start(main()) Additional Explanation यह विकल्प सही समाधान नहीं है।