当前位置: 首页 > 图灵资讯 > 行业资讯> python填充压缩的函数总结

python填充压缩的函数总结

来源:图灵python
时间: 2024-06-27 19:23:49

1、ljust、rjust字符串从左/右开始,后/前填充不够。

#a.ljust()、a.rjust#字符串从左边/右边开始,后面/前面不够填充
s='girl'
s_new=s.ljust(30,'-')#填充字符的长度为1
s_new1=s.rjust(30,'-')
print(s_new)
print(s_new1)

输出:
girl--------------------------
--------------------------girl

2、两侧填充center字符串。

#a.center()#字符串按指定长度两侧填充
s='girl'
s_new=s.center(50,'-')
print(s_new)

输出:
-----------------------girl-----------------------

3、ltrip 左边的空格,\n、去掉tab键等。

#a.ltrip()#左边的空间,\n、所有的tab键都去掉了
s='\ngoodday\n\thello'
s_new=s.lstrip()
print(s_new)

输出:
goodday
hello

4、右边空格的rtripn、去掉tab键等。

#a.rtrip()#右边的空格,\n、去掉tab键等
s='goodday\n\t'
s_new=s.rstrip()
print(s_new)

输出:
goodday

以上是python填充压缩函数总结,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。