On Mar 31, 2:39 pm, hexusne... at gmail.com wrote:
> How do I receive input from the command line in Python?
As long as we are all guessing, do you perhaps mean raw_input?
my_name = raw_input("What is your name? ")
What is your name? Rick <ENTER>
>>> my_name
'Rick'