Python输出一个杨辉三角 输出一个杨辉三角第一个方法:def triangles(): l = [1] yield l #输出第一行:只有一个1的list l = [1,1] yield l Other 2024-07-07 46 点赞 0 评论 69 浏览