raw_input() prompts the user with a given string and accepts and returns a user-input string : raw_input « Buildin Function « Python Tutorial






user_input = raw_input("Enter your name: ")
print user_input
print len(user_input)








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