Computer Science - Text-Based Programming - Python - String manipulation - String Methods Encyclopedia
6 sections. Section 1 'Case Methods': .upper(), .lower(), .title(), .capitalize(), .swapcase(). Examples with 'Hello World'. Section 2 'Search & Check': .find('x') returns index or -1. .count('l') counts occurrences. .startswith('He'), .endswith('ld'). .isdigit(), .isalpha(), .isalnum(), .isspace().