More String Methods: case, strip, and startswith

Premium

Three more groups of string methods you'll need constantly: case methods (.lower(), .upper(), .title()) for normalizing text, .strip() for trimming whitespace or other characters from the edges, and .startswith() / .endswith() for prefix and suffix checks.