我正在使用 Zed Shaw 的Learn Python the Hard Way。
在练习 11 中,代码在第 2 行产生了EOF
错误。代码如下:
1 print "How old are you?",
2 age = raw_input()
3 print "How tall are you?",
4 height = raw_input()
5 print "How much do you weigh?",
6 weight = raw_input()
7 print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
我搜索过 StackOverflow、Google 和 Hacker News 论坛。我找不到任何答案(a)解决了这个问题,(b)我能理解。
我在 ideone.com 上使用 python 编译器(也尝试了其他两个在线编译器,但都没有工作)。
(阅读此内容但无法应用:raw_input() 中的 Python EOF 错误)。