반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- c#
- Google Spreadsheet
- Github
- Tkinter
- PANDAS
- list
- PySpark
- GIT
- google apps script
- Apache
- 파이썬
- SQL
- numpy
- Google Excel
- Kotlin
- matplotlib
- Java
- Excel
- hive
- PostgreSQL
- django
- Redshift
- Python
- dataframe
- math
- array
- gas
- Mac
- string
Archives
- Today
- Total
달나라 노트
Python math : fabs (절대값) 본문
728x90
반응형
math library의 fabs() method는 절대값을 return합니다.
Syntax
math.fabs(x)
예시를 봅시다.
import math
print(math.fabs(-10))
print(math.fabs(5))
print(math.fabs(-10.6))
-- Result
10.0
5.0
10.6
위 결과를 보면 fabs() method의 인자로 전달된 숫자에서 부호가 모두 사라지고 절대값이 return된 것을 볼 수 있습니다.
여기서 한가지 눈여겨볼건 fabs(-10), fabs(5)의 return값이 각각 10.0, 5.0입니다.
정수를 전달했는데 float type의 숫자가 return되었습니다.
따라서 fabs() method는 결과를 float type으로 return합니다.
728x90
반응형
'Python > Python math' 카테고리의 다른 글
Python math : sqrt() (제곱근) (0) | 2022.11.08 |
---|---|
Python math : pow() (거듭제곱, power) (0) | 2022.11.08 |
Python math : fmod() (나머지, 나머지 구하기, remainder) (0) | 2022.11.08 |
Python math : log, log2, log10 (python log 함수, python ln, 자연로그, numpy.log, numpy.log2, numpy.log10) (0) | 2022.01.16 |
Python math : ceil, floor, round (올림, 내림, 반올림) (0) | 2021.09.06 |
Comments