*
***
*****
*******
*****
***
*
【Python3 画菱形】程序分析 递归调用即可。
def draw(num):
a="*"*(2*(4-num)+1)
print(a.center(9,' '))
if num!=1:
draw(num-1)
print(a.center(9,' '))
draw(4)
推荐阅读
- 学习|python3打印菱形(测试过)
- python生成13位或16位时间戳以及反向解析时间戳
- Python3实战Spark大数据分析及调度
- Python3|python基础一
- Python3|Python语言实现多关键字排序问题