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