Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
import math lst = [1.21, 2.23, 17.87, 0.98, 3.14] total = math.fsum(lst) print(total) ''' run: 25.43 '''