Home » Python String rjust() method with Examples

Python String rjust() method with Examples

by Online Tutorials Library

Python String rjust() Method

Python rjust() method right justify the string and fill the remaining spaces with fillchars. This method returns a new string justified right 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 right justified string.

Let’s see some examples of rjust() method to understand it’s functionalities.

Python String rjust() Method Example 1

Output:

 
j a v a p o i n t

Python String rjust() Method Example 2

Output:

 
$ $ $ $ $ j a v a p o i n t

Next TopicPython Strings

You may also like