上下对称的杨辉三角形

生成上下对称的杨辉三角形

* * * 
* * * 
* * * * 
* * * * * 
* * * * 
* * * 
* * 
* 
i = -4
while i <= 4:
    j = 0
    while j <=4-abs(i):
        print("*",end = " ")
        j += 1
    print("")
    i += 1
    原文作者:杨辉三角问题
    原文地址: https://blog.csdn.net/Angus____/article/details/81781756
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞