头歌python复合数据类型打印杨辉三角
时间: 2024-03-21 17:37:08 浏览: 109
Python中的复合数据类型有列表(List)和字典(Dictionary)。而打印杨辉三角可以使用列表来实现。
杨辉三角是一个由数字构成的三角形,其中每个数字是它上方两个数字的和。以下是打印杨辉三角的代码示例:
```python
def print_yanghui_triangle(rows):
triangle = []
for i in range(rows):
row = [1] * (i + 1)
if i > 1:
for j in range(1, i):
row[j] = triangle[i-1][j-1] + triangle[i-1][j]
triangle.append(row)
for row in triangle:
print(' '.join(map(str, row)))
# 调用函数打印杨辉三角
print_yanghui_triangle(5)
```
运行以上代码,将会输出一个5行的杨辉三角:
```
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
```
相关问题
python复合数据类型头歌打印杨辉三角
Python中的复合数据类型有列表(List)、元组()和字典(Dictionary)等。其中,列表是最常用的复合数据类型之一。
要打印杨辉三角,可以使用列表来实现。下面是一个示例代码:
```python
def print_pascal_triangle(n):
triangle = []
for i in range(n):
row = [1] * (i+1)
if i > 1:
for j in range(1, i):
row[j] = triangle[i-1][j-1] + triangle[i-1][j]
triangle.append(row)
for row in triangle:
print(' '.join(map(str, row)))
# 调用函数打印杨辉三角
print_pascal_triangle(5)
```
运行以上代码,将会输出一个5行的杨辉三角形状的数字序列:
```
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
```
python用for循环打印杨辉三角
可以使用以下代码打印杨辉三角:
```
n = 10 # 控制行数
triangle = [[1]]
for i in range(1, n):
row = [1]
for j in range(1, i):
row.append(triangle[i-1][j-1] + triangle[i-1][j])
row.append(1)
triangle.append(row)
for row in triangle:
print(' '.join([str(num) for num in row]))
```
输出结果如下:
```
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
```
阅读全文