美文网首页
用python写杨辉三角

用python写杨辉三角

作者: tianzhanlan | 来源:发表于2018-02-18 16:00 被阅读0次
def triangles():
    L = [1]
    while True:
        yield L
        L.append(0)
        L = [L[i - 1] + L[i] for i in range(len(L))]
n = 0
results = []
for t in triangles():
    print(t)
    results.append(t)
    n = n + 1
    if n == 10:
        break
if results == [
    [1],
    [1, 1],
    [1, 2, 1],
    [1, 3, 3, 1],
    [1, 4, 6, 4, 1],
    [1, 5, 10, 10, 5, 1],
    [1, 6, 15, 20, 15, 6, 1],
    [1, 7, 21, 35, 35, 21, 7, 1],
    [1, 8, 28, 56, 70, 56, 28, 8, 1],
    [1, 9, 36, 84, 126, 126, 84, 36, 9, 1]
]:
    print('测试通过!')
else:
    print('测试失败!')

相关文章

  • 用python写杨辉三角

  • 用python实现杨辉三角

    来自廖雪峰官方网站python教程课后练习 用python实现杨辉三角: 测试用例如下:

  • python实现杨辉三角

    使用python实现杨辉三角python教程-生成器 杨辉三角的特点:1.每行端点与结尾的数为12.每个数等于它上...

  • python输出杨辉三角

    杨辉三角定义 今天学习到的一个python代码实现非常简洁网址如下:python 生成器对于像我这样python初...

  • JS JavaScript实现杨辉三角

    JS JavaScript实现杨辉三角 观察这样的一组数,找出规律,用控制台输出这样规律的数 规律: 这是杨辉三角...

  • vs写python

    用 VSCode 愉快地写 Python

  • Python 杨辉三角

    廖雪峰Python学习网站上有一道试题 用方法实现杨辉三角,觉得很有趣,就尝试了一下,并期待看到更加简洁的方式。 ...

  • 建立http的connection

    用python代码写一遍

  • 用Python写爬虫

    Python Crawler learning 参考书:用Python写网络爬虫 书上的例子采用的是Python ...

  • python3 学习笔记

    Python3 Study Notes 本人很少写 python 代码, 一般都是用 go 的, 去年时用 pyt...

网友评论

      本文标题:用python写杨辉三角

      本文链接:https://www.haomeiwen.com/subject/rjvltftx.html