方法ljust/rjust/center
Posted winecork
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法ljust/rjust/center相关的知识,希望对你有一定的参考价值。
dict = {‘apple‘:4,‘banana‘:10,‘pear‘:8} def printItem(dictName,leftwidth,rightwidth): print("Menu".center(leftwidth+rightwidth,‘-‘)) for i,k in dictName.items(): print(i.ljust(leftwidth,‘.‘) + str(k).rjust(rightwidth)) printItem(dict,20,4)
----------Menu---------- banana.............. 10 pear................ 8 apple............... 4 Process finished with exit code 0
以上是关于方法ljust/rjust/center的主要内容,如果未能解决你的问题,请参考以下文章