Concept Flow - str.lower() and str.upper()
Start with a pandas Series
Apply str.lower()
Convert all text to lowercase
Output new Series with lowercase strings
Apply str.upper()
Convert all text to uppercase
Output new Series with uppercase strings
This flow shows how to take a pandas Series of text and convert all strings to lowercase or uppercase using str.lower() and str.upper().