Result Size: 625 x 571
demo_ref_string_rjust.py:
x
 
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.