input([promt]) gets the input from command line and return the text
example:
input('Press Enter to exit')
>>> text = input( "enter some text: " )
enter some text: good
>>> print( text )
good
If you are working in Python 2.6 or earlier, use raw_input() instead of input() in this code. raw_input() is renamed to input() now in Python3.0