给我一列python杨辉三角的代码
时间: 2023-01-11 16:55:36 浏览: 129
杨辉三角python实现代码
5星 · 资源好评率100%
好的,这是 Python 代码实现杨辉三角的一种方法:
```
def pascal_triangle(n):
result = []
for i in range(n):
if i == 0:
result.append([1])
else:
result.append([1])
for j in range(i-1):
result[i].append(result[i-1][j] + result[i-1][j+1])
result[i].append(1)
return result
print(pascal_triangle(5))
```
这段代码会输出前五行的杨辉三角,输出结果为:
```
[[1], [1, 1], [1, 2, 1], [1, 3, 3, 1], [1, 4, 6, 4, 1]]
```
希望这能帮到你。
阅读全文