用Python编写:分别用for循环和while 循环输出如下图所示的图形 ***** ***** ***** ***** *****
时间: 2024-04-23 10:19:43 浏览: 55
Python基础之循环语句用法示例【for、while循环】
使用for循环和while循环分别输出如下图所示的图形:
使用for循环:
```python
for i in range(5):
print("*****")
```
使用while循环:
```python
i = 0
while i < 5:
print("*****")
i += 1
```
阅读全文