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

Dear All What would be the best way to check if a variable was passed along for the script:

try:
    sys.argv[1]
except NameError:
    startingpoint = 'blah'
else:
    startingpoint = sys.argv[1]

Thanks!

share|improve this question

4 Answers

up vote 5 down vote accepted

In the end, the difference between try, except and testing len(sys.argv) isn't all that significant. They're both a bit hackish compared to argparse.


This occurs to me, though -- what do people think of this, as a sort of low-budget argparse?

arg_names = ['command', 'x', 'y', 'operation', 'option']
args = dict(zip(arg_names, sys.argv))

You could even use it to generate a namedtuple with values that default to None!

Arg_list = collections.namedtuple('Arg_list', arg_names)
args = Arg_list(*(args.get(arg, None) for arg in arg_names))

And all in just four lines.

share|improve this answer
That's quite pretty. – Richard Barrell Apr 7 '12 at 1:11

Check the length of sys.argv:

if len(sys.argv) > 1:
    blah = sys.argv[1]
else:
    blah = 'blah'

Some people prefer the exception-based approach you've suggested (eg, try: blah = sys.argv[1]; except IndexError: blah = 'blah'), but I don't like it as much because it doesn't “scale” nearly as nicely (eg, when you want to accept two or three arguments) and it can potentially hide errors (eg, if you used blah = foo(sys.argv[1]), but foo(...) raised an IndexError, that IndexError would be ignored).

share|improve this answer
3  
+1 for the remark about hiding errors. – larsmans Mar 24 '11 at 18:01
As long as you're being atomic about it though, there's nothing to worry about with try, except. Just wait to foo your argument until the else clause. – senderle Mar 24 '11 at 18:07
2  
Also, once you're thinking about scaling, it's time to move over to argparse. – senderle Mar 24 '11 at 18:09
+1 on argparse. I've got argparse.py in all of my command-line projects. – David Wolever Mar 24 '11 at 18:15
1  
@David, yeah, I do see your point. I'm a bit of a try apologist, I must admit. I just feel that it sometimes expresses my intent more clearly than an if statement. – senderle Mar 24 '11 at 18:23
show 1 more comment

Another way I haven't seen listed yet is to set your sentinel value ahead of time. This method takes advantage of Python's lazy evaluation, in which you don't always have to provide an else statement. Example:

startingpoint = 'blah'
if len(sys.argv) >= 2:
  startingpoint = sys.argv[1]

Or if you're going syntax CRAZY you could use Python's ternary operator:

startingpoint = sys.argv[1] if len(sys.argv) >= 2 else 'blah'
share|improve this answer
The ternary operator answer is to my eyes the prettiest. I'm sitting over here quietly cursing the fact that some of the software that I maintain is tied to Python 2.4, which doesn't have it. – Richard Barrell Apr 7 '12 at 1:09

It's an ordinary Python list. The exception that you would catch for this is IndexError, but you're better off just checking the length instead.

if len(sys.argv) >= 2:
  startingpoint = sys.argv[1]
else:
  startingpoint = 'blah'
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.