class Thing:
def __init__ (self, a, b, c,):
self.a = a
self.b = b
self.c = c
stuff = Thing("apples","butter","charlie")
otherThing = stuff
def doTheThings():
if(otherThing.a == "apples"):
print("done")
doTheThings()
我对“doTheThings”功能的第二行有问题,我不知道出了什么问题。任何帮助都将非常感激。
答案 0 :(得分:-2)
我认为添加某些东西可能会解决您的问题。
if __name__ =="__main__":
doTheThings()
因为这是访问python代码。