摘要: # usr/bin/env python3# -*- coding: utf-8 -*- # -*- 2021/2/8 -*- # 生成器 # 杨辉三角 def triangles(): s = [1] i = 2 while True: yield s # 相当于表示存储的值,但是是计算出来的 t 阅读全文
posted @ 2021-02-21 21:09 书亦非书 阅读(66) 评论(0) 推荐(0)