如何提示输入?

时间:2015-08-04 18:55:43

标签: python-2.7

我是python的新手。如何提示输入?我使用的是python 2.7。 我在正常模式下尝试了以下操作。但它没有提示。

代码是:

first =  raw_input("print any string: ")
print first

请帮忙解决这个问题.... 谢谢!

2 个答案:

答案 0 :(得分:0)

试试这个

age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weigh? ")

print "So, you're %r old, %r tall and %r heavy." % (
    age, height, weight)

并阅读此链接(这就是我得到的例子) http://learnpythonthehardway.org/book/ex12.html

答案 1 :(得分:0)

上面的代码在我的机器上运行。你在运行吗?:

python program.py

如果你想要一个号码,记得要施展它:

x = int(raw_input("Enter x:"))
y = int(raw_input("Enter y:"))

sum = x + y
print(sum)

来自https://pythonspot.com/python-numbers/

的示例