我有一段非常简单的代码,虽然卡住了一个愚蠢但很难弄清楚的情况。我也是python的新手,下面是我的代码
class Function:
def _init_(self):
self.Name=""
self.SubFunctions=[]
self.IsSingle=False
if __name__ == '__main__':
test=Function()
test.Name="testing"
test.SubFunctions.append("param1") # gives an AttributeError: Function instance has no attribute 'SubFunctions'
如果有人能在我出错的地方帮助我。