欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习笔记(31):Python 面试100讲(基于Python3.x)-让字符串居中显示

程序员文章站 2022-07-14 23:05:37
...

立即学习:https://edu.csdn.net/course/play/26755/340143?utm_source=blogtoedu

字符串居中的方法:

       1.center方法:

print("<" + "hello".center(11, "#") + ">")

"""结果:
<###hello###> """

       2.format方法:

print("<{:#^11}>".format("hello"))


"""结果:
<###hello###> """

 

相关标签: 研发管理