python怎么用阶乘
python用阶乘的方法:
使用“import”语句导入math包,用math.factorial函数就可以生成阶乘数了
示例如下:
import math value = math.factorial(3) print(value)
执行结果如下:
1 6
更多Python知识,请关注:云海天python教程网!!
来源:PY学习网:原文地址:https://www.py.cn/article.html
python用阶乘的方法:
使用“import”语句导入math包,用math.factorial函数就可以生成阶乘数了
示例如下:
import math value = math.factorial(3) print(value)
执行结果如下:
1 6
更多Python知识,请关注:云海天python教程网!!
来源:PY学习网:原文地址:https://www.py.cn/article.html