Friday, December 12, 2025
HomeLanguagesPython | sympy.prime() method

Python | sympy.prime() method

With the help of sympy.prime() method, we can find the nth prime, with the primes indexed as prime(1) = 2, prime(2) = 3, etc.

Syntax: prime(n)

Parameter:
n – It denotes the nth prime number.

Returns: Returns the nth prime number.

Example #1:




# import sympy 
from sympy import prime
  
n = 5
  
# Use prime() method 
nth_prime = prime(n) 
      
print("The {}th prime is {}".format(n, nth_prime))  


Output:

The 5th prime is 11

Example #2:




# import sympy 
from sympy import prime
  
n = 23
  
# Use prime() method 
nth_prime = prime(n) 
      
print("The {}rd prime is {}".format(n, nth_prime))        


Output:

The 23rd prime is 83
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12026 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6891 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS