From 7b624de8e3e3637a07364f992c1d7e4185e4a872 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 11 Aug 2019 18:42:52 +0200 Subject: initial commit --- python/48-self_powers.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 python/48-self_powers.py (limited to 'python/48-self_powers.py') diff --git a/python/48-self_powers.py b/python/48-self_powers.py new file mode 100644 index 0000000..6d12141 --- /dev/null +++ b/python/48-self_powers.py @@ -0,0 +1 @@ +print(str(sum([i ** i for i in range(1, 1001)]))[-10:]) -- cgit