Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

파이썬 fsum() 함수

<시간/>

fsum()은 주어진 범위 또는 이터러블 사이의 합을 찾습니다. 수학 라이브러리를 가져와야 합니다. 수학 계산에 널리 사용됩니다.

구문

다음은 함수의 구문입니다.

maths.fsum( iterable )
The iterable can be a range, array , list.
Return Type :
It returns a floating point number.

다음은 fsum이 단일 숫자 또는 목록의 요소 그룹에서 작동하는 방식에 대한 예입니다.

예시

import math
# Using range
print(math.fsum(range(12)))
# List of Integers
listA = [5, 12, 11]
print(math.fsum(listA))
# List of Floating point numbers
listB = [9.35, 6.7, 3]
print(math.fsum(listB))

출력

위의 코드를 실행하면 다음과 같은 결과가 나옵니다. -

66.0
28.0
19.05