[python] class inheritance (파이썬 클래스 상속) 본문

Python

[python] class inheritance (파이썬 클래스 상속)

미니모아 2020. 7. 9. 20:34
반응형
  1. 형식
    class Children(Parent):
    	(생략)

 2 super() 부모 메소드를 실행하면서 오버라이드 하고 싶을때 

class Parents:
	def __init__(self):
        print("안녕")


class Children(Parents):
	def __init__(self):
    	super().__init__()
        print("하세요")
        
        
p = Parents()
c = Children()

//출력 결과 
// 안녕
// 안녕
// 하세요

3. Exception 클래스를 상속해서 사용자 정의 에러 만들기 

class MyException(Exception):
	def __init__(self):
    	  pass

 

반응형
Comments