计算1024的阶乘 python3
Posted huanu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算1024的阶乘 python3相关的知识,希望对你有一定的参考价值。
Programing language : python3
方案一
1 #! /usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # 计算1024的阶乘 4 factorial = 1 5 for i in range(1, 1024 + 1): 6 factorial = factorial * i 7 print("1024! =", factorial)
方案二
1 #! /usr/bin/env python 2 # -*- coding:utf-8 -*- 3 import math 4 print("1024! =", math.factorial(1024))
以上是关于计算1024的阶乘 python3的主要内容,如果未能解决你的问题,请参考以下文章