python 實現楊輝三角

# -*- coding:utf-8 -*- def triangles(): #i = 1  j = 0 L1 = [] L2 = [] S1 = 0 while j < 10: s = 0 for i in L1:                               S1 = s + i                        s = i                  #記錄
相關文章
相關標籤/搜索