编程3 使用while,完成以下图形的输出 * * * * * * * * * * * * * * * * * * * * * * * * *
时间: 2023-09-06 08:11:19 浏览: 485
python 使用while循环输出*组成的菱形实例
下面是使用 while 循环完成该图形输出的代码:
```python
n = 5
i = 1
while i <= n:
j = 1
while j <= i:
print("*", end=" ")
j += 1
print()
i += 1
i = n - 1
while i >= 1:
j = 1
while j <= i:
print("*", end=" ")
j += 1
print()
i -= 1
```
输出结果为:
```
*
* *
* * *
* * * *
* * * * *
* * * *
* * *
* *
*
```
希望对你有帮助!如果还有其他问题,请随时提问。
阅读全文