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输出数字金字塔的主要内容,如果未能解决你的问题,请参考以下文章