请用while完成以下图形的输出。 1. ''' 2. * 3. ** 4. *** 5. **** 6. ***** 7. ****** 8. ***** 9. **** 10. *** 11. ** 12. * 13. '''
时间: 2023-11-25 16:06:29 浏览: 99
以下是使用while循环输出图形的代码:
```python
i = 1
while i <= 6:
j = 1
while j <= i:
print('*', end='')
j += 1
print('\n')
i += 1
while i > 6 and i <= 12:
j = 1
while j <= 12 - i:
print('*', end='')
j += 1
print('\n')
i += 1
```
阅读全文