Console ******* Input ===== :: input = raw_input("Add options for remote JMX monitoring Y/N: ") `Python for Newbies - Interacting with the User`_ ``input`` works just like ``raw_input``, except Python interprets the variables as whatever is typed in. If that didn't make much sense, think of it this way: If you have a straight-up number, it's stored as a number. If you have some values in [] brackets, it's stored as a list. You can even put something in quotes to have a string. `Python Library Reference - Built-in Functions`_ Consider using the ``raw_input()`` function for general input from users. .. _`Python for Newbies - Interacting with the User`: http://web.archive.org/web/20030619190856/http://blacksun.box.sk/tutorials/python.htm#user .. _`Python Library Reference - Built-in Functions`: http://docs.python.org/lib/built-in-funcs.html