파이썬[Python]: decimal - is_subnormal 메서드
decimal 모듈 - is_subnormal 메서드(method)
/// 설명
subnormal 이면 True 를 반환합니다.
※ 형식
Decimal().is_subnormal()
reference
https://docs.python.org/3/library/decimal.html#module-decimal
※ 형식
Decimal().is_subnormal()
reference
https://docs.python.org/3/library/decimal.html#module-decimal
/// 예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import decimal print(decimal.Decimal('1').is_subnormal()) # False print(decimal.Decimal('1.0').is_subnormal()) # False print(decimal.Decimal(' 0.0123').is_subnormal()) # False print(decimal.Decimal('______0.10').is_subnormal()) # False print(decimal.Decimal('0.1e10').is_subnormal()) # False print(decimal.Decimal().is_subnormal()) # False print(decimal.Decimal('0').is_subnormal()) # False print(decimal.Decimal('inf').is_subnormal()) # False print(decimal.Decimal('infinity').is_subnormal()) # False print(decimal.Decimal('NaN').is_subnormal()) # False print(decimal.Decimal('sNaN').is_subnormal()) # False # subnormal numbers: # the subset of denormalized numbers (sometimes called denormals) # that fill the underflow gap around zero in floating-point arithmetic. # # see: https://en.wikipedia.org/wiki/Subnormal_number # # I can not try to show this numbers. | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기