码迷,mamicode.com
首页 > 编程语言 > 详细

(Python3 自定义函数实现数字金字塔 代码

时间:2019-01-31 22:49:25      阅读:617      评论:0      收藏:0      [点我收藏+]

标签:python   数字金字塔   while   实现   end   bsp   def   int   pre   

def kzkz(ceng):
for i in range(1,ceng+1):
print(" "*(ceng-i),end=‘‘)
n=i
while(n>=1):
print(n,end=‘‘)
n-=1
n+=2
while(n<=i):
print(n,end=‘‘)
n+=1
print()
kzkz(5)






       1
     212
   32123
 4321234
543212345

 

(Python3 自定义函数实现数字金字塔 代码

标签:python   数字金字塔   while   实现   end   bsp   def   int   pre   

原文地址:https://www.cnblogs.com/kzkzkz/p/10344184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!