print("The world of python welcomes to you!")
name = raw_input("What is your name? ")
print("Hello, " + name + "!")

Python3.3 input v.s. raw_input_raw_input

print("The world of python welcomes to you!")
name = input("What is your name? ")
print("Hello, " + name + "!")

Python3.3 input v.s. raw_input_Python_02


在windows下双击附件hllo.py文件,运行结果:

Python3.3 input v.s. raw_input_raw_input函数_03

最后一行代码改为raw_input函数,则程序运行完毕,来不及看结果,窗口也跟着关闭。

附件hello.py文件代码内容:

print("The world of python welcomes to you!")
name = input("What is your name? ")
print("Hello, " + name + "!")
input("Press <Enter>")