목차
math.isfinite() 예제 - 숫자의 유한 여부 체크
math.isfinite() 정의
math.isfinite() 구문
math.isfinite() 예제 - 숫자의 유한 여부 체크
import math
print(math.isfinite(2000)) # True
print(math.isfinite(-45.34)) # True
print(math.isfinite(+45.34)) # True
print(math.isfinite(math.inf)) # False
print(math.isfinite(float("nan"))) # False
print(math.isfinite(float("inf"))) # False
print(math.isfinite(float("-inf"))) # False
print(math.isfinite(-math.inf)) # False
print(math.isfinite(0.0)) # True
math.isfinite() 정의
숫자가 유한한지 여부 체크.
Python 3.2 +
math.isfinite() 구문
math.isfinite(num )
[매개변수]
num
필수. 체크할 숫자. ※ 반드시 자료형이 숫자여야 함. (예: float/integer/infinite/NaN/finite)
[반환값]
숫자가 finite (유한)인 경우, True 반환. 숫자가 infinite (무한) 또는 NaN (숫자아님) 경우, False 반환.
주소 복사
랜덤 이동
최신댓글