使用 raw_input 询问用户的姓名

Ask the user for its name using raw_input

我如何编写一个程序,使用 raw_input 提示用户输入他们的名字,然后欢迎他。

例如询问:Enter your name,然后程序继续用 Hello NAME_OF_THE_USER

欢迎用户

这是有史以来最简单的问题之一。这是我的解决方案(因为您将 post 标记为 Python 3):

name = input('Enter your name: ')
print("Welcome", name)

对于Python2,只需将input改为raw_input,去掉print函数的括号即可。