借助於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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。