python练手_61-杨辉三角
2019-02-17 本文已影响0人
学子CH
# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:2019/1/7-23:54
@file_name:【程序61】杨辉三角.py
@IDE:PyCharm
@else: DO NOT STOP STUDYING!!!
"""
# 题目 打印出杨辉三角形前十行。
#
# 程序分析 无
def generate(numRows):
r = [[1]]
for i in range(1,numRows):
r.append(list(map(lambda x,y:x+y, [0]+r[-1],r[-1]+[0])))
return r[:numRows]
a=generate(10)
for i in a:
print(i)