當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Sympy sieve.search()用法及代碼示例


借助於sympy.sieve.search()方法,我們可以找到綁定給定數字的素數的索引i,j。如果給定數是素數,則i == j。

用法: sieve.search(n)
參數:
n - It denotes the number whose bounding prime indices is found.

返回值:返回一個包含n的有界素數索引的元組。


範例1:

# import sympy  
from sympy import sieve 
  
# Use sieve.search() method  
i, j = sieve.search(23)  
      
print("The bounding prime indices of the number 23 : {}, {}".format(i, j))  

輸出:

The bounding prime indices of the number 23 : 9, 9

範例2:

# import sympy  
from sympy import sieve 
  
# Use sieve.search() method  
i, j = sieve.search(25)  
      
print("The bounding prime indices of the number 23 : {}, {}".format(i, j))      

輸出:

The bounding prime indices of the number 23 : 9, 10


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python sympy | sieve.search() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。