-
Notifications
You must be signed in to change notification settings - Fork 0
/
p020.py
14 lines (12 loc) · 892 Bytes
/
p020.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
################################################################################
# P20: Factorial digit sum #
################################################################################
# #
# Find the sum of the digits in the number 100! #
# #
################################################################################
# Problem found at projecteuler.net #
# Author: ncfgrill #
################################################################################
from math import factorial as f
print('Sum:', sum(int(d) for d in str(f(100))))