借助於sympy.composite()方法,我們可以找到第n個複合數,該複合數的索引號為Composite(1)= 4,composite(2)= 6,依此類推。
用法: composite(n)
參數:
n – 它表示第n個複合數。
返回值:返回第n個複合數字。
示例1:
# import sympy
from sympy import composite
n = 5
# Use composite() method
nth_composite = composite(n)
print("The {}th composite is {}".format(n, nth_composite))
輸出:
The 5th composite is 10
示例2:
# import sympy
from sympy import composite
n = 25
# Use composite() method
nth_composite = composite(n)
print("The {}th composite is {}".format(n, nth_composite))
輸出:
The 25th composite is 38
相關用法
- 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.composite() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。