상속 class Unit: def __init__(self, name, hp): self.name = name self.hp = hp class AttackUnit(Unit): def __init__(self, name, hp, damage): Unit.__init__(self, name, hp) self.damage = damage -출처- www.youtube.com/watch?v=kWiCuklohdY&t=10728s onYouTube/Python 2021. 3. 14. 15:03