Read a numeric string input : raw_input « Buildin Function « Python Tutorial






num = raw_input('Now enter a number: ')
print 'Doubling your number: %d' % (int(num) * 2)








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