主頁 > 知識庫 > Python 怎么定義計算N的階乘的函數(shù)

Python 怎么定義計算N的階乘的函數(shù)

熱門標簽:汕頭電商外呼系統(tǒng)供應商 北京外呼電銷機器人招商 云南地圖標注 crm電銷機器人 鄭州智能外呼系統(tǒng)中心 南京crm外呼系統(tǒng)排名 電銷機器人 金倫通信 400電話 申請 條件 賓館能在百度地圖標注嗎

定義計算N的階乘的函數(shù)

1)使用循環(huán)計算階乘

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

2)使用遞歸計算階乘

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

3)調(diào)用reduce函數(shù)計算階乘

說明:Python 在 functools 模塊提供了 reduce() 函數(shù),該函數(shù)使用指定函數(shù)對序列對象進行累計。

查看函數(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

補充:python求n的階乘并輸出_python求n的階乘

階乘是基斯頓·卡曼(Christian Kramp,1760~1826)于1808年發(fā)明的運算符號,是數(shù)學術語。

一個正整數(shù)的階乘(factorial)是所有小于及等于該數(shù)的正整數(shù)的積,并且0的階乘為1。自然數(shù)n的階乘寫作n!。

下面我們來看一下使用Python計算n的階乘的方法:

第一種:利用functools工具處理import functools

result = (lambda k: functools.reduce(int.__mul__, range(1, k + 1), 1))(5)
print(result)```

第二種:普通的循環(huán)x = 1

y = int(input("請輸入要計算的數(shù):"))
for i in range(1, y + 1):
x = x * i
print(x)

第三種:利用遞歸的方式def func(n):

if n == 0 or n == 1:
return 1
else:
return (n * func(n - 1))
a = func(5)
print(a)

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • python遞歸函數(shù)求n的階乘,優(yōu)缺點及遞歸次數(shù)設置方式
  • Python3 實現(xiàn)遞歸求階乘
  • python求前n個階乘的和實例
  • Python階乘求和的代碼詳解
  • python3 將階乘改成函數(shù)形式進行調(diào)用的操作

標簽:浙江 西寧 懷化 梅州 文山 石家莊 錫林郭勒盟 昆明

巨人網(wǎng)絡通訊聲明:本文標題《Python 怎么定義計算N的階乘的函數(shù)》,本文關鍵詞  Python,怎么,定義,計算,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《Python 怎么定義計算N的階乘的函數(shù)》相關的同類信息!
  • 本頁收集關于Python 怎么定義計算N的階乘的函數(shù)的相關信息資訊供網(wǎng)民參考!
  • 推薦文章