在Python中导入文件

发布于 2024-08-26 14:30:38 字数 453 浏览 10 评论 0原文

我有该文件结构 -

  1. Blog\DataObjects\User.py

  2. Blog\index.py

我想导入该函数(say_hello) 来自index.py 的User.py。 我正在尝试这段代码 -

from Blog.DataObjects.User import say_hello

say_hello()  

我有这个错误 -

Traceback (most recent call last):
  File "index.py", line 1, in <module>
    from Blog.DataObjects import User
ImportError: No module named Blog.DataObjects

I have that file structure-

  1. Blog\DataObjects\User.py

  2. Blog\index.py

I want to import the function(say_hello) at User.py from index.py.
I am trying this code -

from Blog.DataObjects.User import say_hello

say_hello()  

And I have that error -

Traceback (most recent call last):
  File "index.py", line 1, in <module>
    from Blog.DataObjects import User
ImportError: No module named Blog.DataObjects

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

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

发布评论

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

评论(2

巾帼英雄 2024-09-02 14:30:39

Python 期望在每个可导入的目录中都有一个文件 __init__ .py,它可能是空的。因此,如果您将文件结构更正为:

Blog/__init__.py
Blog/index.py
Blog/DataObjects/User.py
Blog/DataObjects/__init__.py

如果目录的路径位于您的 Python 路径中,它应该可以工作(您可以使用以下命令进行检查

import sys
print sys.path

:)。如果没有,请注意导入是相对于当前文件的位置完成的。也就是说,由于 index.py 已经在 Blog 中,因此导入应为:

from DataObjects.User import say_hello

Python expects in every directory that should be importable, a file __init__.py, which may be empty. So, if you correct your file structure to this:

Blog/__init__.py
Blog/index.py
Blog/DataObjects/User.py
Blog/DataObjects/__init__.py

it should work, if the path to the directory is in your Python path (you can check this with:

import sys
print sys.path

). If not, mind that importing is done relative to the position of the current file. That is, since index.py is already inside Blog, the import should read:

from DataObjects.User import say_hello
九厘米的零° 2024-09-02 14:30:39
from DataObjects.User import say_hello
from DataObjects.User import say_hello
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文