* * * * * * * * * * * * * * *
通过代码实现上面的三角形图片
for i in range(6,1,-1): for j in range(1,i): print('*'.format(i).expandtabs(23),end=' ') print()