前提・実現したいこと
equip_weaponでweapon内の要素をwarriorに足したい
発生している問題・エラーメッセージ
TypeError: Warrior.equip_weapon() missing 1 required positional argument: 'weapon'
該当のソースコード
python
1class Warrior: 2 def __init__(self): 3 self.health = 50 4 self.attack = 5 5 self.defence = 0 6 self.vampirism = 0 7 self.heal = 0 8 @property 9 def is_alive(self) -> bool: 10 return self.health > 0 11 @property 12 def equip_weapon(self,weapon): 13 self.health=max(0,self.health+weapon.health) 14 self.attack=max(0,self.attack+weapon.attack) 15 if defence: self.defence=max(0,self.defence+weapon.defence) 16 if vampirism: self.vampirism=max(0,self.vampirism+weapon.vampirism) 17 if heal: self.heal=max(0,self.heal+weapon.heal) 18 19class Sword(): 20 def __init__(self): 21 self.health = 5 22 self.attack = 2 23 self.defence = 0 24 self.vampirism = 0 25 self.heal = 0 26 27 28#⬇️不変 29ogre = Warrior() 30sword = Sword() 31ogre.equip_weapon(sword)
補足情報(FW/ツールのバージョンなど)
エラーが引数が足りないのが原因なのはわかっているのですが、()内の1個とclassのselfで2個だと思います。
不変以下のものはテスト内容なのでそこ以外の修正でお願いします。
checkioの環境です
equip_weapon メソッドに @property デコレータを付けているのはなぜなんでしょう?
あなたの回答
tips
プレビュー