请忽略这个例子,它只是在我目前正在学习的一本书中。
我在 Netbeans 6.9.1 中运行它,因为 7 不支持 Python :( 尝试在输出控制台中运行它时出现错误。代码与教科书中的内容完全相同。唯一我能想到的是,net beans 只支持 2.7.1,但我正在学习的书是 Python 3.1。这可能是问题吗?如果我忽略了一些东西,请告诉我。
这是基本脚本;
# Word Problems
# Demonstrates numbers and math
print("If a 2000 pound pregnant hippo gives birth to a 100 pound calf,");
print("but then eats 50 pounds of food, how much does she weigh?");
input("Press the enter key to find out.");
print("2000 - 100 + 50 =", 2000 - 100 + 50);
input("\n\nPress the enter key to exit");
Traceback (most recent call last):
File "/Users/Steve/Desktop/NewPythonProject/src/newpythonproject.py", line 6, in <module>
input("Press the enter key to find out.");
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
-多谢你们。