Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 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 '''