fsum() es una función incorporada en Python, que se usa para encontrar la suma entre algún rango o iterable. Para usar esta función, necesitamos importar la biblioteca matemática.
Sintaxis:
maths.fsum( iterable )
Parámetro:
iterable : Here we pass some value which is iterable like arrays, list.
Usar :
fsum() is used to find the sum of some range, array , list.
Tipo de devolución:
The function return a floating point number.
Código que demuestra fsum() :
# Python code to demonstrate use # of math.fsum() function # fsum() is found in math library import math # range(10) print(math.fsum(range(10))) # Integer list arr = [1, 4, 6] print(math.fsum(arr)) # Floating point list arr = [2.5, 2.4, 3.09] print(math.fsum(arr))
Producción :
45.0 11.0 7.99
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA