반응형
함수 원형
type() 함수안에다가 변수명이나 숫자, 문자를 작성해주면 된다.
type()
예제
type() 함수를 print 함수로 출력해주면 자료형이 나온다.
a = 10
print(type(a)) # int
print(type(111)) # int
print(type(111.1)) # float
print(type("111")) # string
print(type(True)) # bool
print(type(3+4j)) # complex
결과
<class 'int'>
<class 'int'>
<class 'float'>
<class 'str'>
<class 'bool'>
<class 'complex'>
자료형 정리
int : 정수형
float : 실수형
string : 문자열
bool : 참, 거짓
complex : 복소수
반응형
'Python' 카테고리의 다른 글
[Python] 파이썬 팩토리얼 구현 예제 (반복, 재귀(순환)) (0) | 2024.05.07 |
---|---|
[Python] 파이썬 스택 구현 예제(queue LifoQueue) (0) | 2024.05.07 |
[Python] lambda 람다식 사용법 map, filter, reduce 함수 (0) | 2024.04.23 |
[Python] 파이썬 matplotlib 원그래프, 파이차트 그리기, 파이차트 분리 시키기 (0) | 2024.04.20 |
[Python] 파이썬 Tkinter 화면 탐색기 생성, 다이얼로그 (0) | 2024.04.19 |