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!
|
Dear All What would be the best way to check if a variable was passed along for the script:
Thanks! |
||||
|
|
|
In the end, the difference between This occurs to me, though -- what do people think of this, as a sort of low-budget argparse?
You could even use it to generate a namedtuple with values that default to
And all in just four lines. |
||||
|
|
|
Check the length of
Some people prefer the exception-based approach you've suggested (eg, |
|||||||||||||||||
|
|
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
Or if you're going syntax CRAZY you could use Python's ternary operator:
|
|||
|
|
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.
|
|||
|
|