파이썬[Python]: decimal - fma 메서드
decimal 모듈 - fma 메서드(method)
/// 설명
(self * other) + third 를 반환합니다.
Decimal(self).fma(other, third)
※ 형식
Decimal().fma(other, third, context=None)
reference
https://docs.python.org/3/library/decimal.html#module-decimal
Decimal(self).fma(other, third)
※ 형식
Decimal().fma(other, third, context=None)
reference
https://docs.python.org/3/library/decimal.html#module-decimal
/// 예제
1 2 3 4 5 6 7 8 9 10 11 | import decimal print(decimal.Decimal(1).fma(3, 5)) # 8 print(decimal.Decimal(2).fma(3, 5)) # 11 print(decimal.Decimal(3).fma(3, 5)) # 14 print(decimal.Decimal(4).fma(3, 5)) # 17 print(decimal.Decimal(5).fma(3, 5)) # 20 # Decimal(x).fma(y, z) # = (x * y) + z | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기