列表求和

Python 简单
编写一个函数 `list_sum(lst)`,返回列表中所有数字的和。 **示例:** ```python print(list_sum([1, 2, 3, 4, 5])) # 15 print(list_sum([])) # 0 ```

你的代码