加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fact.py 270 Bytes
一键复制 编辑 原始数据 按行查看 历史
sandeepdixit0401 提交于 2020-10-16 05:35 . fact.py
num = 7
factorial = 1
if num < 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1")
else:
for i in range(1,num + 1):
factorial = factorial*i
print("The factorial of",num,"is",factorial)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化