python获取一组数个位数之和
pyschools Topic 2: Question 9 题目:给定一组整数,获取其个位数之和
Write a function getSumOfLastDigits() that takes in a list of positive numbers and returns the sum of all the last digits in the list.
def getSumOfLastDigits(numList): return sum(x % 10 for x in numList) getSumOfLastDigits([1, 23, 456]) Out[11]: 10
作者:九命猫幺
博客出处:http://www.cnblogs.com/yongestcat/
欢迎转载,转载请标明出处。
如果你觉得本文还不错,对你的学习带来了些许帮助,请帮忙点击右下角的推荐
博客出处:http://www.cnblogs.com/yongestcat/
欢迎转载,转载请标明出处。
如果你觉得本文还不错,对你的学习带来了些许帮助,请帮忙点击右下角的推荐