python3 簡單實現楊輝三角

def yanghui(): L = [1] while True: yield L if len(L)==1: L.append(1) else: # for i in range(0,len(L)-1): # temp[i] = L[i]+L[i+1]
相關文章
相關標籤/搜索