python:实现Binary Coefficients二进制系数 def pascal_triangle(lineNumber): list1 = list() list1.append([1]) i = 1