python字符串的rjust方法返回一个原字符串右对齐,并使用fillchar(默认空格)填充至长度 width 的新字符串
方法定义如下
def rjust(self, width, fillchar=None): pass
示例代码
word = 'python' print(word.rjust(9, '*'))
扫描关注, 与我技术互动
QQ交流群: 211426309
分享日常研究的python技术和遇到的问题及解决方案