Geany 错误的基本 Python

Basic Python on Geany error

当 运行 这个简单的 python Geany 程序时(我只是第一次学习如何编程):

name = input(What is your name?: ")
age = int(How old are you?: "))
year = str((2017 - age) + 100
print(name + "will be 100 years old in the year " + year)

我收到这个错误:

C:\WINDOWS\system32' is not recognized as an internal or external command, operable program, or batch file.

谁能帮我解决这个问题?

您的代码没有 运行 因为您缺少多个引号、括号和一个方法。

我的文件是这样的:

name = raw_input("What is your name?: ")
age = input("How old are you?: ")
year = str((2017 - age) + 100)
print(name + "will be 100 years old in the year " + year)

此外,您的文件名没有任何扩展名,因此 Geany 不知道这是一个 Python 文件。所以它只是尝试 运行 它并失败了,因为它没有正确的命令 运行 文件。

如果您使用 .py 扩展名重新保存文件,它会向 Geany 指定它需要使用 Python 命令 运行 该文件。

你的代码有一些错误

name = int(input("enter your name"))
age = int(input("enter your age"))
year = 2017 - age + 100
print(name +"will be 100 year old in the year + year)
  • 这里你的错误是这里的名字只是一个字符串,你试图添加字符串和整数@print(name + "will be 100 years old in the year" + year) 这就是为什么你得到 error404