“从 x 输入 y 作为 z”与“导入 xy 作为 z”

发布于 2024-10-18 00:38:42 字数 57 浏览 4 评论 0原文

我假设它们在功能上是相同的,除了一些可以忽略不计的底层差异。如果是这样,哪种形式更Pythonic?

I'm assuming they are functionally the same, bar some negligible under-the-hood differences. If so, which form is more Pythonic?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷遇一生 2024-10-25 00:38:42

xy 形式隐式地表明涉及包和模块,并且在这种情况下应该是首选形式。

如果t是模块y中定义的符号,那么:

>>> from x.y import t as z
>>>

...但是

>>> import x.y.t as z
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named t
>>> 

点符号是为模块保留的,当涉及模块时应该使用。

The x.y form makes it implicit that packages and modules are involved, and should be the preferred form when that is the case.

If t is a symbol defined in module y, then:

>>> from x.y import t as z
>>>

...but!

>>> import x.y.t as z
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named t
>>> 

The dot notation is reserved for modules, and should be used when modules are involved.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文