V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
codechaser
V2EX  ›  Python

对 Python 的模块不能进行`.`导入吗?

  •  
  •   codechaser · 2018-08-13 11:02:35 +08:00 · 2209 次点击
    这是一个创建于 2076 天前的主题,其中的信息可能已经有所发展或是发生改变。

    举例:想要引入 matplotlib 下面的 animation 模块,import matplotlib.animation会出错,from matplotlib import animation不会。

    9 条回复    2018-08-14 22:40:39 +08:00
    imn1
        1
    imn1  
       2018-08-13 11:07:10 +08:00
    看标题还以为你 powershell 写多了

    import matplotlib
    matplotlib.animation ...

    import matplotlib as a
    a.animation ...
    codechaser
        2
    codechaser  
    OP
       2018-08-13 11:09:29 +08:00
    @imn1 我刚才试了一下,`import matplotlib.animation as animation`也可以。。。
    DiffView
        3
    DiffView  
       2018-08-13 11:20:42 +08:00
    我还以为是 from .xxx import bbb 呢
    mrchi
        4
    mrchi  
       2018-08-13 11:56:04 +08:00
    ![屏幕快照.png]( https://i.loli.net/2018/08/13/5b71012aad08e.png)

    没有报错 Ubuntu 16.04
    codechaser
        5
    codechaser  
    OP
       2018-08-13 15:08:45 +08:00
    @mrchi 头像好评😂
    datou
        6
    datou  
       2018-08-13 17:12:31 +08:00
    python3.6.5 可以使用楼主的引用模块方式

    没问题
    gjquoiai
        7
    gjquoiai  
       2018-08-14 18:15:24 +08:00
    emm 我猜报错肯定不是 import 报错吧?
    如果你写 import matplotlib.animation,调用的时候就得写 matplotlib.animation()
    如果你写 from matplotlib import animation,调用的时候就可以写 animation()
    codechaser
        8
    codechaser  
    OP
       2018-08-14 20:28:19 +08:00 via Android
    @gjquoiai 是这样的,老哥。我看了一下 tutorial 里的关于包的那一章,感觉有点收获🤔
    ps1aniuge
        9
    ps1aniuge  
       2018-08-14 22:40:39 +08:00
    powershell 就是好。
    import matplotlib
    matplotlib.animation
    反人类。
    ==================
    在 ps 中,第一句没必要。
    在 ps 中,第二句也可以省略点前面的部分。
    因为 ps 的方法,命令,函数都是不重名的。导入的时候,必须 显式! 允许重名。
    当然了,你这么做之后,点前面的内容 就需要了。
    ==================
    这就好像,领导直接含张三。就是叫自己部门张三。
    如果有两个张三,就喊 销售部.张三。一个道理。
    ==================
    我说的大家能听懂么? ps 这里就是好。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2790 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 34ms · UTC 11:43 · PVG 19:43 · LAX 04:43 · JFK 07:43
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.