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)

执行结果

原文地址:https://www.cnblogs.com/xiaohuboke/p/13594907.html