Discuss / Python / 评论区大佬好牛[哭]

评论区大佬好牛[哭]

Topic source

唐龙ya

#1 Created at ... [Delete] [Delete and Lock User]
def triangles():    N = [1]    while True:        yield N        N.append(0)        N = [N[i-1]+N[i] for i in range(len(N))]

  • 1

Reply