str(reduce(lambda x, y: x * y, range(1, 11))) -> this returns 10! or '3628800'
在不创建for
循环的情况下,如何将此函数作为一位整数列表映射到另一个函数:例如reduce(lambda x, y: x+ y, [3, 6, 2, 8, 8, 0, 0])
澄清:
reduce(lambda x, y: x + y, [str(reduce(lambda x, y: x * y, range(1, 11)))])
如何将其中的所有内容[ ]
转换为一位整数列表,以便第一个函数可以评估它?当然我需要在.[ ]