- Python - 프로그래밍 시작하기
- Python 기초 (Basics)
- Python 변수 (Variables)
- Python 연산자 (Operators)
- Python 리스트 (List)
- Python 튜플 (Tuple)
- Python 문자열 (Strings)
- Python 집합 (Sets)
- Python 딕셔너리 (Dictionary)
- Python 흐름 제어 (Flow control)
- Python 함수 (Function)
- Python 클래스 (Class)
- Python 내장 함수 (Built-in function)
- Python 키워드 (Keyword)
- Keyword - and
- Keyword - as
- Keyword - assert
- Keyword - break
- Keyword - class
- Keyword - continue
- Keyword - def
- Keyword - del
- Keyword - elif
- Keyword - else
- Keyword - except
- Keyword - False
- Keyword - for
- Keyword - from
- Keyword - global
- Keyword - if
- Keyword - import
- Keyword - in
- Keyword - is
- Keyword - lambda
- Keyword - None
- Keyword - not
- Keyword - or
- Keyword - pass
- Keyword - return
- Keyword - True
- Keyword - try
- Keyword - while
- Python 파일 다루기
- Python datetime 모듈
- Python time 모듈
- Python collections.deque
- Python collections.namedtuple
- Python의 선 (Zen of Python)
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
isinstance()¶
isinstance(object, type) 함수는 주어진 객체 (object)가 입력한 자료형 (type) 중 하나라면 True,
그렇지 않다면 False를 반환합니다.
예제1¶
a = isinstance('Hello', float)
print(a)
b = isinstance('World', (int, float, str))
print(b)
False
True
입력한 문자열 ‘Hello’가 float 자료형이 아니기 때문에 False를 반환합니다.
또한 입력한 문자열 ‘World’가 (int, float, str) 중 str 자료형에 해당하기 때문에 True를 반환합니다.
예제2¶
class Person:
age = 20
gender = 'Male'
def say_hello(self):
print('Hello')
c = Person()
print(isinstance(c, Person))
True
c는 Person 클래스의 인스턴스이므로 isinstance(c, Person)은 True를 반환합니다.
이전글/다음글
이전글 : int()
다음글 : iter()