VOOZH about

URL: https://www.geeksforgeeks.org/python/python-fsum-function/

⇱ Python | fsum() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | fsum() function

Last Updated : 16 Feb, 2023

fsum() is inbuilt function in Python, used to find sum between some range or an iterable. To use this function we need to import the math library. Syntax :

maths.fsum( iterable )

Parameter :

iterable : Here we pass some value
which is iterable like arrays, list.

Use :

fsum() is used to find the sum
of some range, array , list.

Return Type :

The function return a
floating point number.

Time Complexity: O(n) where n is the size of the list.

Auxiliary Space: O(1)

  Code demonstrating fsum()

Output :

45.0
11.0
7.99
Comment