python中兩種階乘函數有兩個階乘函數,自己建立的不算。
一是numpy庫中的階乘函數(推薦學習:Python影片教學)
improt numpy print numpy.math.factorial(3)
#二是python 自帶的標準函式庫也有階乘函數
import math print math.factorial(3)
#範例:
#由于第一种需要下载库,我们使用第二种 import math value = math.factorial(3) print(value)
輸出:
############################################################################6
以上是python階乘函數怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!