About Lesson
Math.fsum():-
The math.fsum() method returns the sum of all items in any iterable (tuples, arrays, lists, etc.).
Example
Return the sum of all items:
import math print(math.fsum([1, 2, 3, 4, 5])) print(math.fsum([100, 400, 340, 500])) print(math.fsum([1.7, 0.3, 1.5, 4.5])) |
Output 15.0 1340.0 8.0 |