python中如何用ljust()实现字符串左对齐?
本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。
1、ljust()方法
字符串的排版方法。
ljust()方法将原字符串左对齐,使用空格填充至指定长度,并返回新的字符串。
如果指定的长度小于或等于原字符串长度,则直接将字符串返回。
2、语法
str.ljust(width[,fillchar])
.ljust(width[,fillchar])
3、参数
width:指定字符串长度;
fillchar:填充字符,默认为空格。
4、返回值
ljust方法返回一个左对齐排版的字符串
5、实例
#-*-coding:utf-8-*-
#@File:check_data.py
#@Project:test_project
#@Date:2019/3/289:25
#@Author:MaiXiaochai
defljust_demo():
string="HelloPython!"
print("string_len:",len(string))
print(string.ljust(15,'+'))
输出
#Out:
string_len:13
HelloPython!++
以上python中用ljust()实现字符串左对齐的方法,希望能对你有所帮助哦~更多Python学习教程请关注IT培训机构:千锋教育。