我正在尝试让 argparse 模块在 Python 中工作。我的问题是,在全新安装时,我得到以下信息:
File "test.py", line 3, in <module>
import argparse
File "/home/jon/Pythons/realmine/argparse.py", line 3, in <module>
parser = argparse.ArgumentParser(description='Short sample app')
AttributeError: 'module' object has no attribute 'ArgumentParser'
test.py
是:
import argparse
显然,我错过了一些东西。任何人都可以帮忙吗?