借助于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
相关用法
- Python sympy.rf()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy RGS用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python sympy | sieve.search() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。