博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python基础===对字符串进行左右中对齐
阅读量:5730 次
发布时间:2019-06-18

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

例如,有一个字典如下:

>>> dic = {

"name": "botoo",
"url": "http://www.123.com",
"page": "88",
"isNonProfit": "true",
"address": "china",
}

想要得到的输出结果如下:

 

首先 获取字典 的 最大值   max(map(len, dic.keys()))  

然后使用

Str.rjust() 右对齐

或者

Str.ljust() 左对齐

或者

Str.center() 居中的方法有序列的输出。

>>> dic = {    "name": "botoo",    "url": "http://www.123.com",    "page": "88",    "isNonProfit": "true",    "address": "china",    }>>> >>> d = max(map(len, dic.keys()))  #获取key的最大值>>> >>> for k in dic:    print(k.ljust(d),":",dic[k])    name        : botoourl         : http://www.123.compage        : 88isNonProfit : trueaddress     : china>>> for k in dic:    print(k.rjust(d),":",dic[k])           name : botoo        url : http://www.123.com       page : 88isNonProfit : true    address : china>>> for k in dic:    print(k.center(d),":",dic[k])        name    : botoo    url     : http://www.123.com    page    : 88isNonProfit : true  address   : china>>>

 

关于 str.ljust()的用法还有这样的;

>>> s = "adc">>> s.ljust(20,"+")'adc+++++++++++++++++'>>> s.rjust(20)'                 adc'>>> s.center(20,"+")'++++++++adc+++++++++'>>>

 

转载于:https://www.cnblogs.com/botoo/p/9463757.html

你可能感兴趣的文章
ASCII
查看>>
ibatis SqlMap not found
查看>>
Android SD卡创建文件和文件夹失败
查看>>
Ubuntu 14.04 vsftp refusing to run with writable root inside chroot问题解决方法
查看>>
Intellij IDEA远程调试tomcat
查看>>
hadoop的学习论坛
查看>>
替代Windows Cmd的利器PowerCmd
查看>>
Struts2 学习小结
查看>>
Linux IPMI 安装配置实用
查看>>
烂泥:wordpress迁移到docker
查看>>
.扒渣机的性能及优势 
查看>>
Linux下磁盘保留空间的调整,解决df看到的空间和实际磁盘大小不一致的问题
查看>>
RSA 生成公钥、私钥对
查看>>
C# ASP.NET 权限设计 完全支持多数据库多语言包的通用权限管理系统组件源码
查看>>
测试工具综合
查看>>
asp.net中调用COM组件发布IIS时常见错误 80070005解决方案
查看>>
分享一段ios数据库代码,包括对表的创建、升级、增删查改
查看>>
如何书写高质量的jQuery代码
查看>>
Activity的生命周期整理
查看>>
【记录】JS toUpperCase toLowerCase 大写字母/小写字母转换
查看>>