본문 바로가기

Python

isinstance() # check is instance of class # check type # datetime.date

728x90
반응형

check type 예시 isinstance 활용 - datetime.date의 instance인지 확인하는 예시

 

import datetime
updated = row.get('updated') if isinstance(row.get('updated'), datetime.date) else None

 

기본적인 내용 + 그 외 추가적인 내용은 아래 포스팅

https://taltal-dev-note.tistory.com/8

728x90
반응형