Python 내장함수 issubclass(), isinstance(), lambda(), filter(), map(), sorted(), zip()
issubclass 함수 # Eagle 클래스는 Bird 클래스를 상속받음. class Eagle(Bird): pass insubclass(Eagle, Bird) True == Eagle 은 Bird 이다. == Eagle 클래스는 Bird 클래스를 상속받았다. == Eagle 클래스는 자식클래스이고 Bird 클래스는 부모클래스이다. isinstance 함수 a = Eagle() ininstance(a, Eagle) True b = 3 ininstance(b, Eagle) False lambda 함수 함수를 생성할 때 사용하는 예약어로 def와 동일한 역할. 보통 함수를 한 줄로 간결하게 만들고자 할 때 사용. def sum(a, b): return a+b sum = lambda a, b: a+b sum..
2022. 6. 19.