str(reduce(lambda x, y: x * y, range(1, 11))) -> this returns 10! or '3628800'
ループを作成せずに、for
この関数を 1 桁の整数のリストとして別の関数にマップするにはどうすればよいですか。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)))])
[ ]
最初の関数がそれを評価できるように、内部のすべてを 1 桁の整数のリストに変換するにはどうすればよいですか? もちろん、内で変換する必要があり[ ]
ます。