学习笔记(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###> """
推荐阅读
-
学习笔记(04):Python 面试100讲(基于Python3.x)-十进制、二进制、八进制和十六进制之间的转换
-
学习笔记(27):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(31):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(09):Python 面试100讲(基于Python3.x)-你真的了解Python字符串吗
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字典与JSON字符串如何互转
-
学习笔记(30):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(18):Python 面试100讲(基于Python3.x)-如何排序一个列表
-
学习笔记(04):Python 面试100讲(基于Python3.x)-绘制谢尔宾斯基三角形