Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
# Import math Library import math # Print the sum of all items 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]))
15.0
1340.0
8.0