码迷,mamicode.com
首页 > 其他好文 > 详细

打印标准目录

时间:2016-12-03 21:38:54      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:enter   one   div   输入   题目   技术   gif   indicator   test   

》题目要求

  将用户提供的字典数据,想目录一样打印出来

》题目目的

  熟练掌握字符串  rjust()  ljust()  center()  的使用方法

》程序实现 

技术分享
 1 import pprint
 2 imf = {"warrior": 2453,
 3        "fury": 28,
 4        "bob": 1254658}
 5 pprint.pprint(imf)
 6 
 7 def test(itemsDict, rightWidth, leftWidth):
 8     print("The information of name and age".center(rightWidth + leftWidth, "="))
 9     for k, v in itemsDict.items():
10         print(k.ljust(leftWidth,".") + str(v).rjust(rightWidth,"."))
11 
12 test(imf,10,20)
View Code

》改进方案

  用户输入标题和对应的页码,当用户输入完毕后将其按照标准的目录格式打印出来

  今天下午食堂(二饭二楼清真食堂)的鱼太难吃啦,导致三少不想更新,待更新中.......

打印标准目录

标签:enter   one   div   输入   题目   技术   gif   indicator   test   

原文地址:http://www.cnblogs.com/NeverCtrl-C/p/6129531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!