秋月明 发表于 2021-5-16 16:59:24

两个python文件函数调用问题

testwelcom.py文件(部分代码):
class Welcome:
    def get_username(self):
      return self.user.get()
    def welcome(self):
      # 账号密码输入框
      self.user = StringVar()
      self.username = Entry(self.root, borderwidth=3, textvariable=self.user)
test.py文件:
import testwelcom
class A:
    def main(self):
      wel = testwelcom.Welcome()
      print(wel.get_username())
a = A()
a.main()

为什么在test文件中调用testwelcom中的get_username方法报错:AttributeError: 'Welcome' object has no attribute 'user'

suchocolate 发表于 2021-5-17 00:55:48

本帖最后由 suchocolate 于 2021-5-17 01:08 编辑

还是发全代码吧,Welcome对象没有user变量,变量初始化一般在__init__里完成,然而这里只有部分代码。
页: [1]
查看完整版本: 两个python文件函数调用问题