파이썬[Python]: math - frexp 함수
math 모듈 - frexp 함수(function)
/// 설명
분수와 지수의 튜플을 반환합니다.(0.5 <= 절대값(분수) < 1, 2^지수).
인자 x 가 0 이면 (0.0, 0) 을 반환합니다.
※ 형식
math.frexp(x)
reference
https://docs.python.org/3/library/math.html#module-math
인자 x 가 0 이면 (0.0, 0) 을 반환합니다.
※ 형식
math.frexp(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 15 | import math print(math.frexp(0)) # (0.0, 0) print(math.frexp(0.1)) # (0.8, -3) print(math.frexp(1.1)) # (0.55, 1) print(math.frexp(2.1)) # (0.525, 2) print(math.frexp(3.1)) # (0.775, 2) print(math.frexp(4.1)) # (0.5125, 3) print(math.frexp(21.8125)) # (0.681640625, 5) # x = 0, tuple(0.0, 0) # form : float = fraction * 2^x, 0.5 <= abs(fraction) < 1 # # tuple = (fraction, x) | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기