Python-文字列整列


文字列の配置
本住所:http://blog.csdn.net/caroline_wendy/article/details/20463231
Pythonでは、文字列を揃え、ljust()を使用し、左を揃えます.rjust()、右揃え;センター()、中央揃え;
3番目のパラメータを変更したり、入力データを変更したりして、デフォルトではスペースを使用します.
コードは次のとおりです.
# -*- coding: utf-8 -*-

#====================
#File: TextExercise.py
#Author: Wendy
#Date: 2014-03-04
#====================

#eclipse pydev, python2.7

print('|' + 'hej'.ljust(20) + '|' + 'hej'.rjust(20) + '|' + 'hej'.center(20) + '|')
print('hej'.center(20, '+')) #   20   ,     hej,    +  

出力:
|hej                 |                 hej|        hej         |
++++++++hej+++++++++

Python - 字符串对齐_第1张图片