Discuss / Python / 默写一遍~~

默写一遍~~

Topic source
l = [1]    
while(1):
    yield l
    l = [sum(i) for i in zip([0] + l,l + [0])]

  • 1

Reply