Result Size: 625 x 571
demo_ref_string_ljust.py:
x
 
txt = "banana"
x = txt.ljust(20)
print(x, "is my favorite fruit.")
C:\Users\My Name>python demo_string_ljust.py
banana              is my favorite fruit.