python ljust,rjust,center,zfill对齐使用方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python ljust,rjust,center,zfill对齐使用方法相关的知识,希望对你有一定的参考价值。

字符串在输出时的对齐:
S.ljust(width,[fillchar]) 
#输出width个字符,S左对齐,不足部分用fillchar填充,默认的为空格。 
S.rjust(width,[fillchar]) #右对齐 
S.center(width, [fillchar]) #中间对齐 
S.zfill(width) #把S变成width长,并在右对齐,不足部分用0补足 

实例

 1 >>> str = "this is string example....wow!!!";
 2 >>> str.ljust(50,0)
 3 this is string example....wow!!!000000000000000000
 4 >>> str.ljust(50)
 5 this is string example....wow!!!                  
 6 >>> str.rjust(50)
 7                   this is string example....wow!!!
 8 >>> str.rjust(50,0)
 9 000000000000000000this is string example....wow!!!
10 >>> str.center(50,0)
11 000000000this is string example....wow!!!000000000
12 >>> str.center(50)
13          this is string example....wow!!!         
14 >>> str.zfill(50)
15 000000000000000000this is string example....wow!!!
16 >>>

 






以上是关于python ljust,rjust,center,zfill对齐使用方法的主要内容,如果未能解决你的问题,请参考以下文章

python ljust,rjust,center,zfill对齐使用方法

方法ljust/rjust/center

JavaScript string_center,rjust,ljust

47-python基础-python3-字符串-常用字符串方法

Python学习笔记:print对齐之ljustrjustcenter

print输出格式总结