Answers for "getting the nth prime python"

0

how to check nth prime in python

x=int(input())
n,c=1,0
while(c<x):
    n+=1
    for i in range(2,n+1):
        if(n%i==0):
            break
    if(i==n):
        c=c+1
print(n)
Posted by: Guest on October-22-2020

Code answers related to "getting the nth prime python"

Python Answers by Framework

Browse Popular Code Answers by Language