1The rjust() method will right align the string, using a specified character
2(space is default) as the fill character. ljust() is same for left allignment.
3
4txt = "banana"
5txt.rjust(20,'x') #txt.rjust(20,' ') is default.
6
7>>>"xxxxxxxxxxxxxxbanana"