demo_ref_string_rjust2.py:
txt = "banana" x = txt.rjust(20, "O") print(x)
➜ begtut>python demo_string_rjust2.py
OOOOOOOOOOOOOObanana