From ac43b36f9732005921ef7f303ffa669fe2c6ae03 Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Tue, 24 Sep 2024 22:11:46 +0100 Subject: Add Python solution to challenge 146 --- challenge-146/paulo-custodio/python/ch-1.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 challenge-146/paulo-custodio/python/ch-1.py (limited to 'challenge-146/paulo-custodio/python/ch-1.py') 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)) -- cgit