From 3cf0b9930e8ac01a46b628e6094c38e9a9d9f76c Mon Sep 17 00:00:00 2001 From: Lauchmelder23 Date: Tue, 9 Oct 2018 21:34:27 +0200 Subject: [PATCH] Added Problem 7 --- Problem_7.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Problem_7.py diff --git a/Problem_7.py b/Problem_7.py new file mode 100644 index 0000000..c46e8aa --- /dev/null +++ b/Problem_7.py @@ -0,0 +1,26 @@ +###################################################################### +# By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. +# +# What is the 10 001st prime number? +# +###################################################################### + +primeIndex = 0 +prime = 0 +iterator = 2 + +while primeIndex <= 10001: + isPrime = True + for i in range(2, int(iterator / 2)): + if iterator % i is 0: + isPrime = False + break + + if isPrime is True: + prime = iterator + primeIndex += 1 + + iterator += 1 + +print(prime) +# Solution: 104743