python练习7--打印字母c

练习

# File  : excise7.py
# IDE   : PyCharm

'''
用*号输出字母C的图案
'''
print('用*号输出字母C的图案!')
print(' '*5,'*'*6)
print(' '*2,'*'*3)
print('*'*2)
print('*'*2)
print(' '*2,'*'*3)
print(' '*5,'*'*6)

执行结果

posted @ 2020-09-01 10:50  子非鱼焉知鱼之乐丶  阅读(484)  评论(0编辑  收藏  举报