Concept Flow - String cleaning (strip, lower, replace)
Start with raw string
Apply strip() to remove spaces
Apply lower() to convert to lowercase
Apply replace() to change substrings
Get cleaned string output
The string is cleaned step-by-step by removing spaces, converting to lowercase, and replacing parts of the text.