当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。