本篇文章為大家展示了如何在Python 中計(jì)算N的階乘,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司專注于臨潁網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供臨潁營銷型網(wǎng)站建設(shè),臨潁網(wǎng)站制作、臨潁網(wǎng)頁設(shè)計(jì)、臨潁網(wǎng)站官網(wǎng)定制、微信平臺(tái)小程序開發(fā)服務(wù),打造臨潁網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供臨潁網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。1)使用循環(huán)計(jì)算階乘
def frac(n): r = 1 if n<=1: if n==0 or n==1: return 1 else: print('n 不能小于0') else: for i in range(1, n+1): r *= i return r print(frac(5)) print(frac(6)) print(frac(7))
120
720
5040
def frac(n): if n<=1: if n==0 or n==1: return 1 else: print('n 不能小于0') else: return n * frac(n-1) print(frac(5)) print(frac(6)) print(frac(7))
120
720
5040
說明:Python 在 functools 模塊提供了 reduce() 函數(shù),該函數(shù)使用指定函數(shù)對(duì)序列對(duì)象進(jìn)行累計(jì)。
查看函數(shù)信息:
import functools print(help(functools.reduce))
Help on built-in function reduce in module _functools: reduce(...) reduce(function, sequence[, initial]) -> value Apply a function of two arguments cumulatively to the items of a sequence, from left to right, so as to reduce the sequence to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5). If initial is present, it is placed before the items of the sequence in the calculation, and serves as a default when the sequence is empty.
import functools def fn(x, y): return x*y def frac(n): if n<=1: if n==0 or n==1: return 1 else: print('n 不能小于0') else: return functools.reduce(fn, range(1, n+1)) print(frac(5)) print(frac(6)) print(frac(7))
120
720
5040
# 使用 lambda 簡寫 import functools def frac(n): if n<=1: if n==0 or n==1: return 1 else: print('n 不能小于0') else: return functools.reduce(lambda x, y: x*y, range(1, n+1)) print(frac(5)) print(frac(6)) print(frac(7))
120
720
5040
補(bǔ)充:python求n的階乘并輸出_python求n的階乘
階乘是基斯頓·卡曼(Christian Kramp,1760~1826)于1808年發(fā)明的運(yùn)算符號(hào),是數(shù)學(xué)術(shù)語。
一個(gè)正整數(shù)的階乘(factorial)是所有小于及等于該數(shù)的正整數(shù)的積,并且0的階乘為1。自然數(shù)n的階乘寫作n!。
下面我們來看一下使用Python計(jì)算n的階乘的方法:
result = (lambda k: functools.reduce(int.__mul__, range(1, k + 1), 1))(5) print(result)```
y = int(input("請(qǐng)輸入要計(jì)算的數(shù):")) for i in range(1, y + 1): x = x * i print(x)
if n == 0 or n == 1: return 1 else: return (n * func(n - 1)) a = func(5) print(a)
上述內(nèi)容就是如何在Python 中計(jì)算N的階乘,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。