Python math.gamma() 方法
示例
查找不同数字的伽马函数
# 导入 math 库
import math
# 返回不同数字的伽马函数
print(math.gamma(-0.1))
print(math.gamma(8))
print(math.gamma(1.2))
print(math.gamma(80))
print(math.gamma(-0.55))
自己尝试 »
定义和用法
The math.gamma()
方法返回一个数字的伽马函数。
提示:要查找数字的对数伽马值,请使用 math.lgamma()
方法。
语法
math.gamma(x)
参数值
参数 | 描述 |
---|---|
x | 必需。要查找伽马函数的数字。如果数字为负整数,则返回 ValueError。如果它不是数字,则返回 TypeError。 |
技术细节
返回值 | 一个 float 值,表示 x 的伽马函数 |
---|---|
Python 版本 | 3.2 |