借助于sympy.primorial()方法,我们可以找到前n个素数(默认)或小于或等于n(当nth = False时)的素数的乘积,其中n和nth是该方法的参数。
用法: primorial(n, nth)
参数:
n – 它表示要计算的前n个素数或小于或等于n的素数的乘积的数量。
nth – 它表示一个布尔值。为True时,它返回前n个素数的乘积;而当False返回时,它返回小于或等于n的素数的乘积。
返回值:返回前n个素数或小于或等于n的素数的乘积。
示例1:
# import primorial() method from sympy
from sympy import primorial
n = 3
# Use primorial() method
primorial_n = primorial(n) # 2 * 3 * 5
print("The product of first {} primes is {}".format(n, primorial_n))
输出:
The product of first 3 primes is 30
示例2:
# import primorial() method from sympy
from sympy import primorial
n = 10
# Use primorial() method
primorial_n = primorial(n, nth = False) # 2 * 3 * 5 * 7
print("The product of primes less than or equal to {} is {}".format(n, primorial_n))
输出:
The product of primes less than or equal to 10 is 210
相关用法
- 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.primorial() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。