Python argparse error: error: argument count: invalid int value

ぃ、小莉子 提交于 2021-02-10 14:26:49

问题


I am trying to run below code in jupyter notebook.

import argparse
parser = argparse.ArgumentParser(description='Example with non-optional arguments')
parser.add_argument('count', action="store", type=int)
parser.add_argument('units', action="store")
print(parser.parse_args())

but this gives this gives below error

usage: ipykernel_launcher.py [-h] count units
ipykernel_launcher.py: error: argument count: invalid int value: 'C:\\Users\\Kwan Lee\\AppData\\Roaming\\jupyter\\runtime\\kernel-76bf5bb5-ea74-42d5-8164-5c56b75bfafc.json'
An exception has occurred, use %tb to see the full traceback.

SystemExit: 2


c:\users\kwan lee\anaconda2\envs\tensorflow\lib\site-packages\IPython\core\interactiveshell.py:2971: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D.
  warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1)

I am just trying to learn what argparse is but I don't get this error.


回答1:


Normally a script like that is run as a stand alone file, e.g.

python foo.py 23 inches

The shell converts '23 inches' in a list of strings, which is available as sys.argv[1:] inside the program.

parser.parse_args()

uses this sys.argv[1:] as the default. But when run from within a Ipython session or Notebook, that list has the values that initialized the session. That file name given as an invalid integer value was part of that initialization, and isn't usable by your parser.

To test this script you need to provide a relevant list of strings, e.g.

parser.parse_args(['23', 'lbs'])

Or import sys and modify sys.argv as described in one of the linked answers.

https://docs.python.org/3/library/argparse.html#beyond-sys-argv



来源:https://stackoverflow.com/questions/50360012/python-argparse-error-error-argument-count-invalid-int-value

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!