Concept Flow - String methods (upcase, downcase, strip)
Start with original string
Apply upcase method
→String in all uppercase
Apply downcase method
→String in all lowercase
Apply strip method
→String with no leading/trailing spaces
End
The string starts as is, then you can change it to all uppercase, all lowercase, or remove spaces at the start and end.