python用阶乘的方法:

使用“import”语句导入math包,用math.factorial函数就可以生成阶乘数了

示例如下:

import math
value = math.factorial(3)
print(value)

执行结果如下:

1
6

更多Python知识,请关注:云海天python教程网!!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么用阶乘