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