gpt4 book ai didi

Python 从本地文件夹导入类

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:30 25 4
gpt4 key购买 nike

我有 2 个类(class)。第一个名为测试,如下所示:

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

关于Python 从本地文件夹导入类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8807581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com