gpt4 book ai didi

python - PyCharm 不显示我的代码的输出

转载 作者:行者123 更新时间:2023-11-28 21:53:32 26 4
gpt4 key购买 nike

我将 Pycharm 3.4.1 与 Python 版本 3 一起使用。两天来,我的基本/简单代码一直无法正常工作。 Pycharm 说代码执行错误为 0。但最终没有任何打印品或结果。

任何人都可以检查代码吗?有没有人经历过同样的事情?

代码 1:

#Welcome to basic calculator, let's start..

a = int(input("Enter your first number: "))
b = int(input("Enter your second number: "))

type = str(input("Please choose your calculation type: +, -, *, / "))



if type == "+":
print("The result is: ", a + b)
elif type == "-":
print("The result is: ", a - b)
elif type == "*":
print("The result is: ", a * b)
elif type == "/":
print("The result is: ", a / b)
else:
print("The command you entered is not valid")

代码 2:

class Enemy:
life = 3

def attack(self):
print('attack!')
self.life -= 1


def check(self):
if self.life <= 0:
print("I am dead")
else:
print(str(self.life) + " life left")



enemy1 = Enemy()
enemy2 = Enemy()


# each object is independent of one another, they don't share variables
enemy1.attack()
enemy1.attack()
enemy1.check()
enemy2.check()

最佳答案

遇到了同样的问题。在我的例子中,防病毒软件 (Comodo) 包含文件并且不允许它访问控制台。

在 Comodo 中将文件设置为安全后,输出工作正常。

关于python - PyCharm 不显示我的代码的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26035322/

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