python 用*输出字母C的图案
时间: 2024-03-18 07:38:59 浏览: 70
可以使用如下代码输出字母C的图案:
```
print(" *****")
print(" **")
print("**")
print("**")
print(" **")
print(" *****")
```
运行以上代码,输出结果如下:
```
*****
**
**
**
**
*****
```
相关问题
使用python实现用*号输出字母C的图案
好的,以下是Python实现用*号输出字母C的图案的代码:
```
print(' *****')
print(' ** ')
print('** ')
print('** ')
print(' ** ')
print(' *****')
```
Python算法 用*号输出字母C的图案。
好的,这个问题我可以回答。以下是Python代码:
```python
print(" * * *")
print(" * ")
print("* ")
print("* ")
print("* ")
print(" * ")
print(" * * *")
```
输出结果为:
```
* * *
*
*
*
*
*
* * *
```
阅读全文