Python-杨辉三角

廖雪峰课后题

def triangles(n):
    L = [1]
    while True:
        yield L
        L = [L[x] + L[x + 1] for x in range(len(L) - 1)]
        L.insert(0, 1)
        L.append(1)
        if len(L) > n:
            break

a = triangles(20)
for i in a:
    print(i)
    原文作者:杨辉三角问题
    原文地址: https://blog.csdn.net/u010455534/article/details/71176416
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞