标签: python python-3.x
有这个返回协程的异步方法
async def async_task() -> str: time.sleep(1) print(threading.current_thread().name) return f"Hello Async world {random.randint(1, 100)}"
为什么我在等待结果
await async_task()
打印上说我在主线程中?
MainThread
我期待看到事件循环的线程名称