demo_ref_string_rjust.py:
txt = "banana" x = txt.rjust(20) print(x, "is my favorite fruit.")
➜ begtut>python demo_string_rjust.py
banana is my favorite fruit.