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

打印杨辉三角—Python

时间:2018-08-05 21:36:47      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ima   src   range   分享   style   img   info   app   打印   

技术分享图片

b=[]
for i in range(0,9):
    c=[]
    for j in range(0,i):
        if j==0:
            c.append(b[i-1][j])
        if j<=i-2:#执行完第一个if,接着执行第二个if
            c.append(b[i-1][j]+b[i-1][j+1])
    c.append(1)#每次循环结束b列表尾部添加1
    b.append(c)
# print(b)
for i in b:
    for k in i:
        print(k,end=" ")
    print()

 

打印杨辉三角—Python

标签:ima   src   range   分享   style   img   info   app   打印   

原文地址:https://www.cnblogs.com/Python-T/p/9426944.html

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