Result Size:
625 x 571
demo_ref_string_strip.py:
txt = " banana " x = txt.strip() print("of all fruits", x, "is my favorite")
x
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