Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Remove Leading And Trailing Whitespace From A Python String With .strip()

Calling [TODO: Code shorthand span ] on a string removes both leading and trailing whitespace (including newline characters)

python
original = """

    alfa bravo charlie

   """

stripped = original.strip()

print(f"START|{stripped}|END")
results start