demo_ref_string_rjust.py:
txt = "banana" x = txt.rjust(20) print(x, "is my favorite fruit.")
C:\Users\My Name>python demo_string_rjust.py
banana is my favorite fruit.