在simpy模块中,我们可以使用以下方法获取[a,b)范围内所有素数的列表: sympy.primerange()
函数。
用法: sympy.primerange() 参数: range a and b 返回: a list of all primes in given range
代码1:
# Python program to get prime number range
# using sympy.primerange() method
# importing sympy module
from sympy import *
# calling primerange function on differnet numbers
list(primerange(7, 30))
list(primerange(0, 100))
输出:
[7, 11, 13, 17, 19, 23, 29]
[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]
代码2:
# Python program to get the range prime number
# using sympy.primerange() method
# importing sympy module
import sympy.ntheory as nt
# calling primerange function on range
list(nt.primerange(2, 31))
输出:
[2, 3, 5, 7, 11, 13, 17, 19, 23, 29]
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | simpy.primerange() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。