借助于sympy.randprime()方法,我们可以找到[a,b)范围内的随机质数,其中a和b是该方法的参数。
用法: randprime(a, b)
参数:
a –它表示范围的开始。它具有包容性。
b –它表示范围的结尾。不包括在内。
返回值:返回给定范围内的随机素数。如果范围内不存在质数,则将引发ValueError。
示例1:
# import randprime() method from sympy
from sympy import randprime
a = 4
b = 50
# Use randprime() method
a_randprime_b = randprime(a, b)
print("A random prime between {} and {} is {}".format(a, b, a_randprime_b))
输出:
A random prime between 4 and 50 is 37
示例2:
# import randprime() method from sympy
from sympy import randprime
a = 60
b = 100
# Use randprime() method
a_randprime_b = randprime(a, b)
print("A random prime between {} and {} is {}".format(a, b, a_randprime_b))
输出:
A random prime between 60 and 100 is 79
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.randprime() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。