I am trying to obtain a string of numbers from argparse. It's optional whether or not the argument -n is provided.
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-n', nargs=1) # -n is optional but must come with one and only one argument
args = parser.parse_args()
test = args.n
if test != 'None':
print("hi " + test)
The program fails when I do not provide "-n argument", but works fine when I do.
Traceback (most recent call last):
File "parse_args_test.py", line 7, in <module>
print("hi " + test)
TypeError: Can't convert 'NoneType' object to str implicitly
How can I fix this?
Do not try to concatenate
None
and"hi "
:or
or test if
test
is set to None explicitly:Use "is" when comparing to None. Should look like this: