type()

type() 함수는 객체의 자료형 (data type)을 반환합니다.



예제

print(type(1))
print(type(3.14))
print(type('apple'))
print(type([1, 2, 3, 4]))
print(type((1, 2, 3, 4)))
print(type({'x': 0, 'y': 1}))
<class 'int'>
<class 'float'>
<class 'str'>
<class 'list'>
<class 'tuple'>
<class 'dict'>

파이썬의 모든 자료형은 클래스입니다.

다양한 자료형을 확인하기 위해 type() 내장함수를 사용할 수 있습니다.



이전글/다음글

이전글 :
다음글 :