aboutsummaryrefslogtreecommitdiff
path: root/challenge-146/paulo-custodio/python/ch-1.py
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2024-09-25 09:29:21 +0100
committerGitHub <noreply@github.com>2024-09-25 09:29:21 +0100
commit261da1d2c54ab8faab88537076b4248d5abd00f7 (patch)
treec60a0327997c7d9759f275323ae120d735726784 /challenge-146/paulo-custodio/python/ch-1.py
parent9e56f497ae79225e5a6e041a963741885335d0d0 (diff)
parent206c2fce8db1de9b7f82f04a3276005a284b3c40 (diff)
downloadperlweeklychallenge-club-261da1d2c54ab8faab88537076b4248d5abd00f7.tar.gz
perlweeklychallenge-club-261da1d2c54ab8faab88537076b4248d5abd00f7.tar.bz2
perlweeklychallenge-club-261da1d2c54ab8faab88537076b4248d5abd00f7.zip
Merge pull request #10906 from pauloscustodio/master
Add Python solutions
Diffstat (limited to 'challenge-146/paulo-custodio/python/ch-1.py')
-rw-r--r--challenge-146/paulo-custodio/python/ch-1.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/challenge-146/paulo-custodio/python/ch-1.py b/challenge-146/paulo-custodio/python/ch-1.py
new file mode 100644
index 0000000000..0cee726b6c
--- /dev/null
+++ b/challenge-146/paulo-custodio/python/ch-1.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python3
+
+# Challenge 146
+#
+# TASK #1 > 10001st Prime Number
+# Submitted by: Mohammad S Anwar
+# Write a script to generate the 10001st prime number.
+
+from sympy import prime
+
+print(prime(10001))