본문 바로가기

Python(파이썬)

파이썬 - 데이터 유형

728x90

 

데이터 유형

Integer(int)

 

정수

type(1)

 

Floating point number(float)

 

소수점 숫자

type(1.0)

 

String(str)

 

문자열은 따옴에 표시된 문자의 시퀀스

type('string')

 

Boolean(bool)

 

논리식

true 또는 false로 평가된다.

type(False)
728x90
반응형