Python中田字格输出
一起学习python
·
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
大家可以一起交流学习
如有不正
请多多斧正
更多推荐
已为社区贡献1条内容
所有评论(0)