Use raw_input : raw_input « Buildin Function « Python Tutorial






name = raw_input("What is your name? ") 
print "Hello, " + name + "!"








13.39.raw_input
13.39.1.raw_input() prompts the user with a given string and accepts and returns a user-input string
13.39.2.Use raw_input
13.39.3.raw_input treats all input as raw data and puts it into a string
13.39.4.Read a numeric string input
13.39.5.try statement with input