在类中调用函数

时间:2018-03-14 08:55:27

标签: python function class call

如何像这段代码一样调用类中的函数?我试过,但我不能......想法是:我想更新de class中的其他函数,而不是使用这个代码,没有成功:app = MyApp()app.build.last1.text = time.strftime( “%H:%M:%S \ n”)

我是怎么做到的?

(...)

max-width:100%
width:100%
display: block (but even all other possible values)

MYAPP(APP)????

(...)

overflow:hidden/scroll 

1 个答案:

答案 0 :(得分:-1)

您可以为该类创建对象 M = MYAPP() M.build()将帮助调用该函数。

为您的方案尝试此操作

class A():
    def funct1(self):
        sample="hi"

class B():
    def func2(self):
        A.sample="hello"
        print A.sample

a=A()
a.funct1()
b=B()
b.func2()

输出: 喂