Python sympy sieve.search()方法

Python sympy sieve.search()方法

sympy.sieve.search()方法的帮助下,我们可以找到与给定数有联系的素数的索引i, j。如果给定的数字是质数,那么i == j。

语法: sieve.search(n)
参数 :
n –它表示找到其边界质数指数的数字。

返回:返回一个包含**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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程