0
這是一個練習代碼。除了如何進行權重比較外,我瞭解所有內容。我想要另一個重量是40並打印「Spot Wins!」面向對象編程(Python)代碼
class Pet:
def __init__(self,myname,mykind,myweight,mycost):
self.name = myname
self.kind = mykind
self.weight = myweight
self.cost = mycost
self.speak()
self.isexpensive()
# self.battle(40) This is where the error happens
def speak(self):
if self.kind == 'dog':
print('Woof!')
elif self.kind == 'cat':
print('Meow!')
else:
print('I am mute')
def battle(self,other):
if self.weight > other.weight:
print(self.name + ' wins!')
else:
print(other.name + ' wins!')
def grow(self):
self.weight = self.weight + 5
def isexpensive(self):
if self.cost > 500:
return True
else:
return False
spot = Pet('Spot','dog',50,550)
您不要在構造函數中放置'self.battle(40)'。你稍後在Pet類的**實例**上調用'spot.battle(Pet(...))'。 –