方法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的主要内容,如果未能解决你的问题,请参考以下文章

python3----ljust rjust center

Python学习笔记:print对齐之ljustrjustcenter

Python 字符串的方法整理

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

Android课程---Android Studio使用小技巧:提取方法代码片段