Python输出数字金字塔

Posted 孤云jh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python输出数字金字塔相关的知识,希望对你有一定的参考价值。

使用Python输出一个数字金字塔

运行结果:

 

 源代码:

\'\'\'
    Python输出数字金字塔
\'\'\'

for x in range(1,10):
    print(\' \'*(15-x),end=\'\')
    n=x
    while n>=1:
        print(n,sep=\'\',end=\'\')
        n-=1
    n+=2
    while n<=x:
        print(n,sep=\'\',end=\'\')
        n+=1
    print()

以上是关于Python输出数字金字塔的主要内容,如果未能解决你的问题,请参考以下文章

python生成金字塔

打印数字金字塔(python)

用python打印数字金字塔

如何用python写一个剧中的金字塔?

python gdal处理瓦片金字塔吗

怎样用JAVAscript编写数字金字塔