python字符串的center方法返回一个指定的宽度(width)居中的字符串,参数fillchar指定填充的字符,如果不设置则默认填充空格。
方法定义如下
def center(self, width, fillchar=None): pass
示例代码如下
word = 'hello' print(word.center(9, '*')) # **hello**
扫描关注, 与我技术互动
QQ交流群: 211426309
分享日常研究的python技术和遇到的问题及解决方案