달나라 노트

Python math : fabs (절대값) 본문

Python/Python math

Python math : fabs (절대값)

CosmosProject 2022. 11. 8. 20:01
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
반응형
Comments