problem solving/Project Euler Problem 20 - Find the sum of digits in 100! toysmars 2010. 2. 20. 13:45 링크 n! means n (n 1) ... 3 2 1 Find the sum of the digits in the number 100! easy with python sum([int(x) for x in str(math.factorial(100))])