此外,我不能将 int 转换为字符串,也不能使用列表理解
我一直收到同样的错误,我不知道如何处理它......
这是代码:
sum_of_digits = lambda a: map(lambda b, c: b + sum_of_digits(c) if a > 10 else None, a % 10, a / 10) if a > 10 else None
def main():
print(sum_of_digits(104))
if __name__ == '__main__':
main()
这是错误:
TypeError: argument 2 to map() must support iteration
天涯尽头无女友
温温酱
aluckdog
相关分类