Question 7

10001st Prime Number

Code:

	# Set i variable
	i=0

	# For loop
	for x in Primes(2,1000000000):
	    # Add 1 to i
	    i+=1
	    # If i is 10001st prime
	    if i==10001:
	        # Print x
	        print(x)
	
Charlie M-S