반올림 : round(실수, n)
>>> n = 7/15
>>> n
0.4666666666666667
>>> round(n,2)
0.47
>>> round(n,4)
0.4667
>>> round(n)
0
>>> type(round(n))
<class 'int'>
정수도 -를 사용해서 반올림 가능하다.
>>> round(12345,-1)
12340
>>> round(12345,-2)
12300
올림, 내림 : math.ceil, math.floor
import math
>>> math.ceil(12.2)
13
>>> math.floor(12.2)
12
'대학원 공부 > programming language' 카테고리의 다른 글
Numpy : np.linspace (구간에 점 만들기) (0) | 2020.06.04 |
---|---|
Matplotlib : 3차원 그래프 그리기 (0) | 2020.06.04 |
Python : package 에서 상위 모듈 import 하기. (0) | 2020.05.19 |
Web : semantic 하게 웹을 짠다는 것. (0) | 2020.05.12 |
CSS : class naming (OOCSS) (0) | 2020.05.12 |
댓글