CodingTest

[파이썬 코딩 도장] 34.6 심사문제: 게임 캐릭터 클래스 만들기

nineDeveloper 2020. 12. 17.
728x90

정답

class Annie:
  def __init__(self, health, mana, ability_power):
    self.health = health
    self.mana = mana
    self.ability_power = ability_power

  def tibbers(self):
    print('티버: 피해량 {0}'.format(self.ability_power * 0.65 + 400))
728x90

댓글

💲 추천 글