수치 - float

CODEDRAGON Development/Python

반응형

   

   

수치

  • int
  • float
  • complex

   

   

   

float

>>> type(3.14)
<class 'float'>
>>> type(314e-2) #지수표현
<class 'float'>

   

   

반응형

'Development > Python' 카테고리의 다른 글

설치 - PyCharm  (0) 2015.07.10
수치 - complex  (0) 2015.06.26
자료형  (0) 2015.06.08
ex01-주석  (0) 2015.06.03
ex01-주석  (0) 2015.05.28