无法访问Python中的导入函数

发布于 11-27 07:06 字数 711 浏览 1 评论 0原文

谁能帮我解决这个问题吗?

我将继续使用 PyDev Aptana 来开发 python 代码。这是我在 PyDev IDE 下的项目结构:

/testProject
        /src
            /testModule  
            __init__.py
            testMod.py
        main.py

testMod.py 文件:

def test(n): 
    print "echo"+n 

main.py 文件:

import testModule
testModule.test(4) 

当我尝试在 PyDev 中运行它时,它在 main.py 第 2 行(调用 test(4) 的地方)给了我这个错误:

AttributeError: 'module' object has no attribute 'test'

我将 main.py 更改为:

import testModule.test
testModule.test(4)  

仍然给出错误 'module' object not callable!

这有什么问题?

Can anyone please help me with this ?

I am moving on using PyDev Aptana for developing python codes. Here is my project structure under PyDev IDE :

/testProject
        /src
            /testModule  
            __init__.py
            testMod.py
        main.py

testMod.py file :

def test(n): 
    print "echo"+n 

main.py file :

import testModule
testModule.test(4) 

When I try to run this in PyDev , it gave me this error at main.py , line 2 ( where test(4) is called):

AttributeError: 'module' object has no attribute 'test'

I change main.py to :

import testModule.test
testModule.test(4)  

still gives me error 'module' object not callable!

What is wrong with this ??

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

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

发布评论

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

评论(2

蔚蓝源自深海2024-12-04 07:06:01

您错过了 testMod 模块。您的方法的全名是 testModule.testMod.test

You missed the testMod module. The full name of your method is testModule.testMod.test.

奢华的一滴泪2024-12-04 07:06:01

嗯,这基本上是因为 testModule 中没有方法 test()。事实上,你的 testModule 不是模块,而是一个包,而 testModtestModule 包中的模块。

因此,根据您的结构,以下内容将起作用:

from testModule import testMod
testMod.test(4) 

请参阅 http://docs.python.org/tutorial /modules.html 了解更多详细信息

Well, this is basically because there is no method test() in testModule. In fact, your testModule is not module, but is a package, while testMod is a module in testModule package.

So, with your structure, the following will work:

from testModule import testMod
testMod.test(4) 

See http://docs.python.org/tutorial/modules.html for more details

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