【Python】【demo实验4】【计算阶乘】

计算阶乘

 

# encoding=utf-8
i = int(input("please input number:  \n"))
k = 1
for j in range(1,i):
    k=k*j
    print("&&&",k)

    
print("###",k)

 

输出结果:

 

 

 

 

————————(我是分割线)————————

参考:

None

 

备注:

初次编辑时间:2019年9月22日18:15:51

环境:Windows 7   / Python 3.7.2

 

posted @ 2019-09-22 18:16  sszqxt  阅读(164)  评论(0编辑  收藏  举报