programming-examples/python/Function/Python program to calculate the sum of a list of numbers.py
2019-11-15 12:59:38 +01:00

7 lines
187 B
Python

def list_sum(num_List):
if len(num_List) == 1:
return num_List[0]
else:
return num_List[0] + list_sum(num_List[1:])
print(list_sum([2, 4, 5, 6, 7]))