codecamp

Python3 math.factorial()方法 -求阶乘

Python math 模块  math 模块


描述

math.factorial(x) 方法返回 x 的阶乘。

参数只能是正整数。

一个数字的阶乘是所有整数的乘积之和,例如,6 的阶乘是: 6 x 5 x 4 x 3 x 2 x 1 = 720。


语法

math.factorial() 方法语法如下:

math.factorial(x)

参数说明:

  • x -- 必需,正整数。如果数字为负数或不是整数,则返回 ValueError。 如果值不是数字,则返回 TypeError。

返回值

返回一个正整数,表示正整数的阶乘。


实例

以下实例返回正整数的阶乘:

# 导入 math 包
import math

# 输出正整数的阶乘
print(math.factorial(9))
print(math.factorial(6))
print(math.factorial(12))

输出结果:

362880
720
479001600

Python math 模块  math 模块


Python3 math.fabs()方法 - 求绝对值
Python3 math.fmod() 方法 -求余数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

相关教程

Python基础教程

python内置库

python3 math模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }