python用户输入

接收用户输入
input函数能够让程序暂停运行,等待用户进行输入,并获取输入的值:

#hello.py
msg = raw_input("Please input: ")
print(msg)

终端结果:
Please input: hello
hello

上面的例子用的是raw_input,在python2中该函数能更好的读取字符串输入,如果使用input就需要在字符串两边加上引号。input函数用于输入数字会有更好的效果,它能对输入的表达式进行计算。

#hello.py
number = input("Please input number: ")
print(number)

终端结果:
Please input number: 123
123

Please input number: 11 + 11
22

而对于python3来说,只需要使用input即可。

你可能感兴趣的:(python)