pycod
很多人在说我们讲故事吹NB 但是我们吹过的NB ,正在一一变为现实 !!!!!

# ./sd.py
*
***
*****
*******
*********
|
[root@bogon shengdan]# vim sd.py
[root@bogon shengdan]# cat sd.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
height = 5
stars = 1
for i in range(height):
print((' ' * (height - i)) + ('*' * stars))
stars += 2
print((' ' * height) + '|')
[root@bogon shengdan]#

posted on 2020-12-24 13:26  pycod  阅读(1238)  评论(0编辑  收藏  举报