l = 1
xx = '*'
kk = ' '
while True:
if l < 6:
x = '{:^36}'.format(xx*(2*l-1))
l += 1
print(x)
continue
elif (l >= 6) and (l < 10):
num = l - 6
x = '{:^36}'.format(xx*(36-num*6))
l += 1
print(x)
continue
elif (l >= 10) and (l < 12):
num = l - 10
x = '{:^36}'.format(xx*(14+num*2))
l += 1
print(x)
continue
elif (l >= 12) and (l < 16):
num = l - 12
x = '{:^36}'.format(xx*(8-num*2) + kk*(2+num*6) + (xx*(8-num*2)))
l += 1
print(x)
continue
else:
break
我學到了一下幾點 Windows系統目錄結構與滲透的作用 常見Windows的服務詳解 Windows埠詳解 常用的Windows注冊表詳解 hacker DOS命令詳解(net user / type /md /rd/ dir /cd /net use copy、批處理 等) 利用dos命令制作 ......