在Atom中遇到Python代码问题。我正在使用“学习Python的艰难之路”#39;练习一些编码。当我将此代码输入Atom时,没有错误,但它只是不会运行(是的,我安装了脚本,它适用于其他事情)。在Atom的底部有一个小蛋计时器,但没有其他任何东西给我任何迹象表明我可能做错了什么。
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
weight = raw_input()
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
当我这样输入时
print "How old are you?",
print "How tall are you?",
print "How much do you weigh?",
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
代码运行,但是错误只是说年龄没有定义,这是有道理的,因为代码没有完成。这只是表明编辑器没有问题,但代码是什么?所以请帮忙。我是新手。