在sympy.sieve.extend()方法的帮助下,我们可以使筛子覆盖所有小于等于给定自然数的质数。
用法: sieve.extend(N)
参数:
N - It denotes the number up to which the sieve is extended.
返回: The function does not return anything.
范例1:
# import sympy
from sympy import sieve
# Use sieve.extend() method
sieve.extend(50)
prime_list = sieve._list
print("Prime Numbers up to 50 : {}".format(prime_list))
输出:
Prime Numbers up to 50 : array('l', [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47])
范例2:
# import sympy
from sympy import sieve
# Use sieve.extend() method
sieve.extend(100)
prime_list = sieve._list
print("Prime Numbers up to 100 : {}".format(prime_list))
输出:
Prime Numbers up to 100 : 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, 97])
相关用法
- 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.extend() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。