fsum()

fsum(iterable_object) returns the sum ( float data type ) of the elements of the iterable_object.
fsum(n) # (m,e) 
iterable_object : Iterable Object like list, set, tuple , range etc

Returns floating point number.

Example using range
import math
print(math.fsum(range(0,10))) # 45.0 
Example using list
import math
my_list=[1,2,3,4,5]
print(math.fsum(my_list)) # 15.0
Example using tuple
import math
my_tuple=(1.3,4.5,6.2,7.1)
print(math.fsum(my_tuple)) # 19.1
Example using using set
import math
my_set={1.3,4.5,6.2,7.1}
print(math.fsum(my_set))
We can use only iterable object
import math
my_data=5
print(math.fsum(my_data))
This will generate Error message
 TypeError: 'int' object is not iterable

Data type of output

We will get float dtype out put by using fsum()
import math
print(type(math.fsum([4,6,1])))   # <class 'float'>
print(type(math.fsum([1.4,6,1]))) # <class 'float'>

Difference between fsum() and sum()

fsum() is included in Python math module so we have to import it before using. Where as sum() is part of built in functions of core Python so no need to import any library.

fsum() returns always float dtype. However sum() returns the same dtype of input number.
Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.



Subscribe to our YouTube Channel here



plus2net.com







Python Video Tutorials
Python SQLite Video Tutorials
Python MySQL Video Tutorials
Python Tkinter Video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer