此问题已在此处找到答案:
python中的阶乘函数(9个答案)23小时前关门。我被问到这个问题:编写使用python的代码 math 模块来计算和打印 100! 什么是 100! 什么意思?
math
100!
dxxyhpgq1#
你可以用 math.factorial 功能。像这样:
math.factorial
from math import factorial # 100! print( factorial (100))
1条答案
按热度按时间dxxyhpgq1#
你可以用
math.factorial
功能。像这样: