例如,有一个字典如下:
>>> dic = {
"name": "botoo",
"url": "http://HdhCmsTest123测试数据",
"page": "88",
"isNonProfit": "true",
"address": "china",
} 想要得到的 输出结果如下:
相关推荐:《Python视频教程》
首先获取字典的最大值max(map(len, dic.keys()))
然后使用
Str.rjust() 右对齐
或者
Str.ljust() 左对齐
或者
Str.center() 居中的方法有序列的 输出。
>>> dic = {
"name": "botoo",
"url": "http://HdhCmsTest123测试数据",
"page": "88",
"isNonProfit": "true",
"address": "china",
}
>>>
>>> d = max(map(len, dic.keys())) #获取key的最大值
>>>
>>> for k in dic:
print(k.ljust(d),":",dic[k])
name : botoo
url : http://HdhCmsTest123测试数据
page : 88
isNonProfit : true
address : china
>>> for k in dic:
print(k.rjust(d),":",dic[k])
name : botoo
url : http://HdhCmsTest123测试数据
page : 88
isNonProfit : true
address : china
>>> for k in dic:
print(k.center(d),":",dic[k])
name : botoo
url : http://HdhCmsTest123测试数据
page : 88
isNonProfit : true
address : china
>>> 关于 str.ljust()的用法还有这样的;
>>> s = "adc" >>> s.ljust(20,"+") 'adc+++++++++++++++++' >>> s.rjust(20) ' adc' >>> s.center(20,"+") '++++++++adc+++++++++' >>>
以上就是python怎么右对齐的详细内容,更多请关注Gxl网其它相关文章!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did79160