微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python – 对象没有使用argparse的属性

我正在关注 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并且没有关系.

解决方法

错误消息我猜你的脚本试图不是从argparse包导入,而是从本地/home/brian/Documents/Scripts/argparse.py模块导入.重命名您的文件,然后重试.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐