博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python中ljust,rjust,center和zfill的用法解析
阅读量:5046 次
发布时间:2019-06-12

本文共 624 字,大约阅读时间需要 2 分钟。

字符串在输出时的对齐:

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

>>>s = 'this is a string.'>>>s.ljust(50,"*")'this is a string.*********************************'>>>s.rjust(50, "*")'*********************************this is a string.'>>>s.center(50, "*")'****************this is a string.*****************'>>>s.zfill(50)'000000000000000000000000000000000this is a string.'>>>len(s)17

原字符串长度不变。

转载于:https://www.cnblogs.com/ilyou2049/p/11100654.html

你可能感兴趣的文章
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
二叉树的遍历问题总结
查看>>
新浪分享API应用的开发
查看>>
爬取:中国大学排名
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>
mybatis中>=和<=的实现方式
查看>>
Python面向对象03/继承
查看>>
java序列化和反序列化
查看>>
绝对定位
查看>>
flink源码编译(windows环境)
查看>>
dpkg 删除 百度网盘 程序
查看>>
服务器nginx安装
查看>>
std::nothrow
查看>>
rest-framework 分页器
查看>>
JQuery(一)安装&选择器 样式篇
查看>>
浏览器的DNS缓存查看和清除
查看>>
浏览器跨域问题
查看>>