python – 打印带间距的文本金字塔

python – 打印带间距的文本金字塔,第1张

概述http://tekknolagi.co.cc/cgi-bin/helloworld.py 这是输出 我想要它做的是做一个金字塔形状 这是代码…… #!/usr/bin/env python# -*- coding: UTF-8 -*-# enable debuggingimport cgitbcgitb.enable()print "Content-Type: text/pla http://tekknolagi.co.cc/cgi-bin/helloworld.py

这是输出

我想要它做的是做一个金字塔形状

这是代码……

#!/usr/bin/env python# -*- Coding: UTF-8 -*-# enable deBUGgingimport cgitbcgitb.enable()print "Content-Type: text/plain;charset=utf-8"printfor i in range(1,10):    x = "hi "*i    print x.rjust(40)for i in range(1,10):    x = " hi"*i    print x.ljust(40)

我怎么做到这一点?

解决方法
print x.rjust(40) + x.ljust(40)
总结

以上是内存溢出为你收集整理的python – 打印带间距文本金字塔全部内容,希望文章能够帮你解决python – 打印带间距的文本金字塔所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1194787.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存