输出一个矩阵,但这次是中空的

lie=int(input('lie:'))
hang=int(input('hang:'))
phang=1
while phang<=hang:
    plie=1
    if phang==1 or phang==hang:
        while plie<=lie:
            print('*',end='')
            plie+=1
    while plie<=lie:
        if plie==1 or plie==lie:
            print('*',end='')
        else:print(' ',end='')
        plie+=1
    phang+=1
    print()
View Code

 

posted @ 2017-11-25 20:24  xusuns  阅读(198)  评论(0编辑  收藏  举报