up vote 23 down vote favorite
4
share [g+] share [fb]

How do I have a Python script that can accept user input (assuming this is possible) and how do I make it read in arguments if run from the command line?

link|improve this question

feedback

8 Answers

up vote 40 down vote accepted

To read user input you can try the cmd module for easily creating a mini-command line interpreter (with help texts and autocompletion) and raw_input for less fancy stuff (just reading a line of text from the user).

Command line inputs are in sys.argv. Try this in your script:

import sys
print sys.argv

There are two modules for parsing command line options: optparse and getopt. If you just want to input files to your script, behold the power of fileinput.

The Python library reference is your friend.

link|improve this answer
+1, Cmd is freaking beautiful! – jlafay Nov 2 '11 at 20:58
1  
raw_input was renamed to input in Python 3.x - documentation here – steampowered Nov 30 '11 at 22:49
feedback
var = raw_input("Enter something: ")
print "you entered ", var
link|improve this answer
feedback

The best way to process command line arguments is the optparse module.

Use raw_input() to get user input. If you import the readline module your users will have line editing and history.

link|improve this answer
feedback

Careful not to use the input function , unless you know what you're doing . Unlink raw_input , input will accept any python expression , so it's kinda like eval

link|improve this answer
feedback

As of Python 3.2 2.7, there is now argparse for processing command line arguments.

link|improve this answer
argparse has also been backported and is available on PyPi pypi.python.org/pypi/argparse/1.2.1 – Sebastian Blask Apr 20 '11 at 14:27
feedback

Use 'raw_input' for input from a console/terminal.

if you just want a command line argument like a file name or something e.g.

$ python my_prog.py file_name.txt

then you can use sys.argv...

import sys
print sys.argv

sys.argv is a list where 0 is the program name, so in the above example sys.argv[1] would be "file_name.txt"

If you want to have full on command line options use the optparse module.

Pev

link|improve this answer
feedback

raw_input is no longer available in Python 3.x. But raw_input was renamed input, so the same functionality exists.

input_var = raw_input("Enter something: ")
print ("you entered " + input_var) 

Documentation of the change

link|improve this answer
feedback

For user input in python 3.x.

input_variable = input ("Enter your name: ")
print ("your name is" + input_variable)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.