■ float 클래스의 생성자를 사용해 양/음 무한대 값을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import math positiveInfiniteFloatValue = float('inf' ) negativeInfiniteFloatValue1 = float('-inf') negativeInfiniteFloatValue2 = -float('inf' ) print(positiveInfiniteFloatValue ) print(negativeInfiniteFloatValue1) print(negativeInfiniteFloatValue2) """ inf -inf -inf """ |