파이썬[Python]: math - fabs 함수
math 모듈 - fabs 함수(function)
/// 설명
x 의 절대값을 반환합니다.
※ 형식
math.fabs(x)
reference
https://docs.python.org/3/library/math.html#module-math
※ 형식
math.fabs(x)
reference
https://docs.python.org/3/library/math.html#module-math
/// 예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import math print(math.fabs(1)) # 1.0 print(math.fabs(-1)) # 1.0 print(math.fabs(0.1)) # 0.1 print(math.fabs(-0.1)) # 0.1 # |x| = sqrt((x^2)), sqrt = squart root # # |x| = x, (x > 0) # |x| = 0, (x = 0) # |x| = -x, (x < 0) | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기