Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
    import sys

    print sys.argv[1]

hi,

this may seem very basic but I can't get Python to read in anything from the command line. thats the code above and what I type is:

    myfile.py helloworld

and what i get back is:

    IndexError: list index out of range

It seemed to work once for me but won't work any more, and I've tried uninstalling and reinstalling Python and it still doesnt work.

So my question is, am I doing anything wrong? or have I just broken Python?

Thanks for any help

Using: Windows 7 Python 2.7.2

share|improve this question
What happens when you just print sys.argv? And does it work, when calling the file via python.exe myfile.py helloworld? – poke Nov 1 '11 at 16:07
ah, thanks for your responces, managed to get it working. had a very silly mistake, didnt add python to the Path in system variables – user1024028 Nov 1 '11 at 16:16

2 Answers

up vote 1 down vote accepted

Are you sure you are calling your python script the way you think you are?

#!/usr/bin/python
import sys

if len(sys.argv) < 2:
    print "you did not give any arguments\n"
else:
    print sys.argv[1]

returns:

$ ./foo.py 
you did not give any arguments

$ ./foo.py hello_world
hello_world
$ 
share|improve this answer
thanks for your responce, managed to get it working – user1024028 Nov 1 '11 at 16:16

Try this:

python myfile.py helloworld
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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