On Mar 31, 2:39 pm, [EMAIL PROTECTED] 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'

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to