借助於sympy.prime()方法,我們可以找到第n個素數,素數索引為prime(1)= 2,prime(2)= 3,依此類推。
用法: prime(n)
參數:
n – 它表示第n個質數。
返回值:返回第n個質數。
示例1:
# import sympy
from sympy import prime
n = 5
# Use prime() method
nth_prime = prime(n)
print("The {}th prime is {}".format(n, nth_prime))
輸出:
The 5th prime is 11
示例2:
# import sympy
from sympy import prime
n = 23
# Use prime() method
nth_prime = prime(n)
print("The {}rd prime is {}".format(n, nth_prime))
輸出:
The 23rd prime is 83
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python hasattr()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python PIL putalpha()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.prime() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。