170
Python String ljust() Method
Python ljust() method left justify the string and fill the remaining spaces with fillchars. This method returns a new string justified left and filled with fillchars.
Signature
Parameters
- width : width of the given string.
- fillchar : characters to fill the remaining space in the string. It is optional.
Return
It returns a left justified string.
Let’s see some examples of ljust() method to understand it’s functionalities.
Python String ljust() Method Example 1
Output:
J | a | v | a | t | p | o | i | n | t |
Python String ljust() Method Example 2
Output:
J | a | v | a | t | p | o | i | n | t | $ | $ | $ | $ | $ |
Next TopicPython Strings