diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2024-09-24 22:11:46 +0100 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2024-09-24 22:11:46 +0100 |
| commit | ac43b36f9732005921ef7f303ffa669fe2c6ae03 (patch) | |
| tree | 34b34026a75b49f05fbbfca79e9a177e463e1715 /challenge-146/paulo-custodio/python/ch-1.py | |
| parent | 7471e4d859724f217eecd4fe691e588b6f7e209e (diff) | |
| download | perlweeklychallenge-club-ac43b36f9732005921ef7f303ffa669fe2c6ae03.tar.gz perlweeklychallenge-club-ac43b36f9732005921ef7f303ffa669fe2c6ae03.tar.bz2 perlweeklychallenge-club-ac43b36f9732005921ef7f303ffa669fe2c6ae03.zip | |
Add Python solution to challenge 146
Diffstat (limited to 'challenge-146/paulo-custodio/python/ch-1.py')
| -rw-r--r-- | challenge-146/paulo-custodio/python/ch-1.py | 11 |
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)) |
