0
我知道這是一個新手問題。但。我有一個非常簡單的模塊,其中包含一個類,我想調用該模塊從另一個模塊運行。像這樣:如何執行另一個模塊的代碼?
#module a, to be imported
import statements
if __name__ == '__main__':
class a1:
def __init__(self, stuff):
do stuff
def run_proc():
do stuff involving 'a1' when called from another module
#Module that I'll run, that imports and uses 'a':
if __name__ == '__main__':
import a
a.run_proc()
然而,對於可能明顯其它方面的原因,我得到的錯誤屬性錯誤:「模塊」對象有沒有屬性「run_proc」我需要爲這個類的靜態方法,或在類中有我的run_proc()方法,我初始化了一個實例?
你知道怎麼班蟒蛇工作? –
**爲什麼**對於上帝的愛是否有主哨內的班級定義? –
不要在main中定義類。 – zhangyangyu