Sponsored Reserved space — layout preview until AdSense is connected

Reference library

Strings & text

Format, split, join, and clean Python strings — the bread and butter of everyday scripts.

1 match
Sponsored Reserved space — layout preview until AdSense is connected
Strings & text easy

Strip and normalize text

Remove stray whitespace and compare user input reliably.

strings strip input
Python
messy = "  Hello, Python!  \n"
clean = messy.strip()
print(repr(clean))

user = "  YES  "
if user.strip().lower() == "yes":
    print("Confirmed")
2 0 Open

Browse by section

Each section groups closely related Python snippets.