Recipe 1.4. Aligning Strings(Python Cookbook)_PythonRecipe 1.4. Aligning Strings(Python Cookbook)_Python_02align
1 >>> print '|''hej'.ljust(20), '|''hej'.rjust(20), '|''hej'.center(20), '|'
2 | hej                  |                  hej |         hej          |
3 >>> print 'hej'.center(2)
4 hej
5 >>> print 'hej'.center(20'+')
6 ++++++++hej+++++++++