Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题,简单的答案。我主要要求这样的代码:
def getSumOfLastDigits(numList): return sum (num % 10 for num in numList)
计算余数:
21 % 10 == 1 4 % 10 == 4
这是对模数的列表理解num(10获取余数或最低有效位),然后将计算值相加。
num
10
函数 ( getSumOfLastDigits()) 的名称是自记录的。
getSumOfLastDigits()
%是模(余数)运算符,例如12 % 7 == 5.
%
12 % 7 == 5
它是求余数的模运算符,在许多算法中非常有用