Python从本地文件夹导入类

我有2节课.第一个是命名测试,如下所示:

import textbox
class test:

    a=textbox("test")
    a.run()

第二个类是文本框,如下所示:

class textbox():
    def __init__(self, string):
        self.string=string
    def run(self):
        print string

我收到这个错误

File "C:\Users\User\Desktop\edoras\gui\test.py", line 4, in test
    a=textbox("test")
TypeError: 'module' object is not callable

我使用pydev eclipse插件

解决方法:

尝试

a = textbox.textbox("test")

或者使用

from textbox import textbox
上一篇:解决 hive maPredue转换hivesql出错Error: Could not find or load main class org.apache.hadoop.mapreduce.v2.a


下一篇:【原创】Python3 + Red + PyDev + Eclipse + Subversion + RobotFramework + UI Automator2 + Weditor 构建Web+Mo