# 导入数学库
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))