Result Size: 625 x 571
demo_ref_string_lstrip.py:
x
 
txt = "     banana     "
x = txt.lstrip()
print("of all fruits", x, "is my favorite")
C:\Users\My Name>python demo_string_lstrip.py
of all fruits banana     is my favorite