借助于sympy.sieve.extend_to_no()方法,我们可以扩展筛网以使其包含第i个质数。注意:如果列表太短,则列表会扩展50%,因此列表的长度可能会比请求的更长。
用法: sieve.extend_to_no(i)
参数:
i - It denotes that the sieve is extended to include the ith prime number.
返回: The method does not return anything.
范例1:
# import sympy
from sympy import sieve
# Use sieve.extend_to_no() method
sieve.extend_to_no(15)
prime_list = sieve._list
print("Prime Numbers up to 15th prime : {}".format(prime_list))
输出:
Prime Numbers up to 15th prime : array('l', [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61])
范例2:
# import sympy
from sympy import sieve
# Use sieve.extend_to_no() method
sieve.extend_to_no(20)
prime_list = sieve._list
print("Prime Numbers up to 15th prime : {}".format(prime_list))
输出:
Prime Numbers up to 15th prime : array('l', [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89])
相关用法
- Python sympy.csc()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.has()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python sympy | sieve.extend_to_no() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。