demo_ref_string_strip.py:
txt = " banana " x = txt.strip() print("of all fruits", x, "is my favorite")
C:\Users\My Name>python demo_string_strip.py
of all fruits banana is my favorite