demo_ref_string_ljust.py:
txt = "banana" x = txt.ljust(20) print(x, "is my favorite fruit.")
➜ begtut>python demo_string_ljust.py
banana is my favorite fruit.