a="+"
b="-"
c="|"
d=" "#冒号之间有空格
for i in range(1,12):
    for j in range(1,12):

        if i in [1,6,11] and j in [1,6]:
            print(a,end='')#end=''表示在本行输出
        if i in [1,6,11] and j in [11]:
            print(a,end='\n')#\n表示换行
        if i in [1,6,11] and j not in [1,6,11]:
            print(b,end='')
        if i not in [1,6,11] and j in [1,6]:
            print(c,end='')
        if i not in [1,6,11] and j in [11]:
            print(c,end="\n")
        if i not in [1, 6, 11] and j not in [1,6,11]:
            print(d,end='')

本人刚学python

大家可以一起交流学习

如有不正

请多多斧正

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐