字符串对齐
>>> print '|','abc'.ljust(20,'_'),'|','abc'.rjust(20,'_'),'|','abc'.center(20,'_')
| abc_________________ | _________________abc | ________abc_________
>>>
字符串对齐
>>> print '|','abc'.ljust(20,'_'),'|','abc'.rjust(20,'_'),'|','abc'.center(20,'_')
| abc_________________ | _________________abc | ________abc_________
>>>