打印杨辉三角—Python

Posted Iving

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印杨辉三角—Python相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

Python 中使用 forwhile 循环打印杨辉三角练习(列表索引练习)。

Python 打印各种三角形

python打印杨辉三角

python打印各种三角形

打印数字金字塔(python)

利用Python的generator打印出杨辉三角