문자 비교
if isinstance('문자', str): # True
or
if type('문자') is str: # True
숫자 비교
if isinstance(9, int): # True
or
if type(9) is int: # True
참조
[stackoverflow]: https://stackoverflow.com/questions/707674/how-to-compare-type-of-an-object-in-python
728x90
'Programing Language > Python' 카테고리의 다른 글
[Python] AttributeError: module 'datetime' has no attribute 'now' (0) | 2023.02.21 |
---|---|
[Python] 딕셔너리 키 존재여부 확인하기 (0) | 2023.02.21 |
[Python] requirements.txt 생성 및 설치 (0) | 2023.02.20 |
[Python] 개발환경 (pyenv, pyenv-virtualenv) (0) | 2023.02.17 |
Python Django 시작하기 (0) | 2022.07.17 |
댓글