Concept Flow - str.replace() for substitution
Start with DataFrame column
Call str.replace(old, new)
Search each string for 'old'
Replace 'old' with 'new'
Return new Series with replaced strings
The method takes a column of text, finds all occurrences of a substring, replaces them, and returns the updated column.