gpt4 book ai didi

Python IDLE子进程错误?

转载 作者:太空狗 更新时间:2023-10-29 18:27:07 24 4
gpt4 key购买 nike

IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connection.

不要以为有人问过这个问题 - 为什么在运行非常简单的程序时偶尔会出现这个问题 - 然后我必须转到任务管理器并停止所有 Pythonw 进程才能让它再次工作?

它似乎在不同的代码位上随机发生 - 这是我目前正在做的 -

f = open('money.txt')
currentmoney = float(f.readline())
print(currentmoney, end='')
howmuch = (float(input('How much did you put in or take out?:')))
now = currentmoney + howmuch
print(now)
f.close()
f = open('money.txt', 'w')
f.write(str(now))
f.close()

有时有效,有时无效!

最佳答案

我收到了同样的错误信息。对我造成问题的原因是我将其中一个脚本命名为“string.py”。每次我尝试在同一目录中运行带有“string.py”的脚本时,都会发生这种情况。

关于Python IDLE子进程错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/874757/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com