使用 input() 和 raw input()
Python 2.x >= 2.3
raw_input
将等待用户输入文本,然后将结果作为字符串返回。
foo = raw_input("Put a message here that asks the user for input")
在上面的示例中,foo
将存储用户提供的任何输入。
Python 3.x >= 3.0
input
将等待用户输入文本,然后将结果作为字符串返回。
foo = input("Put a message here that asks the user for input")
在上面的示例中,foo
将存储用户提供的任何输入。