본문으로 바로가기

상속

category onYouTube/Python 2021. 3. 14. 15:03
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' 카테고리의 다른 글

메소드 오버라이딩  (0) 2021.03.14
다중 상속  (0) 2021.03.14
클래스 메소드  (0) 2021.03.14
With  (0) 2021.03.14
Pickle  (0) 2021.03.14