summaryrefslogtreecommitdiff
path: root/Problem48.py
diff options
context:
space:
mode:
authorJoshua Drake <joshua.drake@ditchwitch.com>2023-04-07 08:13:49 -0500
committerJoshua Drake <joshua.drake@ditchwitch.com>2023-04-07 08:13:49 -0500
commit1161f9a034de06a63538e3a9a0b7717098c744d9 (patch)
tree55bb842b2daa4f096eb7916a8d3630426fc1c376 /Problem48.py
Initial CommitHEADmaster
Diffstat (limited to 'Problem48.py')
-rw-r--r--Problem48.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Problem48.py b/Problem48.py
new file mode 100644
index 0000000..0fdf2e9
--- /dev/null
+++ b/Problem48.py
@@ -0,0 +1,6 @@
+def selfpowers(n):
+ sum = 0
+ for x in range(1,n+1):
+ sum += pow(x,x)
+ return sum
+print(str(selfpowers(1000))) \ No newline at end of file