summaryrefslogtreecommitdiff
path: root/Problem20.py
diff options
context:
space:
mode:
Diffstat (limited to 'Problem20.py')
-rw-r--r--Problem20.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Problem20.py b/Problem20.py
new file mode 100644
index 0000000..6b64cd6
--- /dev/null
+++ b/Problem20.py
@@ -0,0 +1,10 @@
+def factorial(n):
+ if n > 1:
+ return n*factorial(n-1)
+ else:
+ return 1
+factorialString = str(factorial(100))
+count = 0
+for x in range(0,len(factorialString)):
+ count += int(factorialString[x])
+print(count) \ No newline at end of file