當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math.perm()用法及代碼示例


數學模塊Python中的Math庫包含許多數學運算,可以使用該模塊輕鬆執行。math.perm()Python中的method方法用於獲取從n個項中選擇k個項(不重複且有序)的方法數量。評估為n! /(n-k)!當k <= n時,當k> n時為0。此方法是Python版本3.8中的新增函數。

用法: math.perm(n, k = None)

參數:
n:非負整數
k:一個非負整數。如果未指定k,則默認為None


返回:一個整數值,表示從n個項目中選擇k個項目(不重複且有序)的方式。如果k為none,則方法返回n!。

代碼1:用於math.perm()方法

# Python Program to explain math.perm() method 
  
# Importing math module 
import math 
  
n = 10
k = 2
  
# Get the number of ways to choose 
# k items from n items without 
# repetition and with order 
nPk = math.perm(n, k) 
print(nPk) 
  
n = 5
k = 3
  
# Get the number of ways to choose 
# k items from n items without 
# repetition and with order 
nPk = math.perm(n, k) 
print(nPk)
輸出:
90
60

代碼2:當k> n時

# Python Program to explain math.perm() method 
  
# Importing math module 
import math 
  
# When k > n  
# math.perm(n, k) returns 0. 
n = 3
k = 5
  
# Get the number of ways to choose 
# k items from n items without 
# repetition and with order 
nPk = math.perm(n, k) 
print(nPk)
輸出:
0

代碼3:如果未指定k

# Python Program to explain math.perm() method 
  
# Importing math module 
import math 
  
# When k is not specified 
# It defaults to n and  
# math.perm(n, k) returns n ! n = 5 
  
nPk = math.perm(n) 
print(nPk)
輸出:
120

參考: Python math library



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python – math.perm() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。