试图了解Python 3.7中的类和方法。我继续运行下面的代码,但仍得到这个NameError,它与我在Stats类的initialize方法中建立的points变量相关联。我认为该错误是由于识别局部/全局变量时遇到的某些问题而导致的,但是我无法对此表示怀疑。有人有什么想法吗?
class Stats:
def __init__(self, points, rebounds, assists, steals):
self.points = points
self.rebounds = rebounds
self.assists = assists
self.steals = steals
def tripDub(self):
if points >= 10 and rebounds >= 10 and assists >= 10 and steals >= 10:
return "Yes!"
else:
return "Nope!"
s = Stats(30, 20, 9, 5)
print("Did he earn a Triple Double? Result:", s.tripDub())
答案 0 :(得分:4)
在引用实例变量之前,您需要self.
:
class Stats:
def __init__(self, points, rebounds, assists, steals):
self.points = points
self.rebounds = rebounds
self.assists = assists
self.steals = steals
def tripDub(self):
if self.points >= 10 and self.rebounds >= 10 and self.assists >= 10 and self.steals >= 10:
return "Yes!"
else:
return "Nope!"
s = Stats(30, 20, 9, 5)
print("Did he earn a Triple Double? Result:", s.tripDub())
答案 1 :(得分:3)
您需要在points
函数中使用self来引用rebounds
,assists
,steals
和tripDub
。
示例:self.points