Python/basics.py

7 lines
158 B
Python
Raw Normal View History

2020-02-03 13:58:09 +00:00
def addition(numbers):
total = 0
for number in numbers:
total = total + float(number)
return total
2020-01-29 13:54:51 +00:00
2020-02-03 13:58:09 +00:00
print(addition(['1.2', '2.6', '3.3']))