我正在关注
this tutorial尝试将argparse实现为我正在编写的python脚本.
[05:51 PM] user Scripts> cat argparse.py import argparse parser = argparse.ArgumentParser() parser.parse_args() [05:51 PM] user Scripts> python3 argparse.py Traceback (most recent call last): File "argparse.py",line 1,in <module> import argparse File "/home/brian/Documents/Scripts/argparse.py",line 2,in <module> parser = argparse.ArgumentParser() AttributeError: 'module' object has no attribute 'ArgumentParser'
我正在运行Python 3.3.2并使用easy_install安装了argparse 1.2.1所以我知道它在系统上,但我无法确定导致错误的原因.
注意:我读过this post并且没有关系.
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。