提问人:Thomas Lee 提问时间:11/13/2023 更新时间:11/13/2023 访问量:40
为什么我的 python 运行 asyncio 时出错,而其他人却没有?
Why my python runs asyncio with error, but someone else not?
问:
async def func1():
print('hello')
# time.sleep(3)
print('hello')
if __name__ == '__main__':
f1 = func1()
asyncio.run(f1)
它以 runtimeerror 运行:无法从正在运行的事件循环调用 asyncio.run() 但在其他人的 python 中,它可以运行。 为什么其他人可以正确运行,但在我的 python 中它运行错误。 python的版本有问题吗?
答: 暂无答案
评论
f1
None
f1 = func1