我有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