Concept Flow - str.len() for string length
Start with a pandas Series of strings
Call str.len() method
Calculate length of each string
Return Series of lengths
Use or display result
We start with a pandas Series containing strings. Using str.len(), pandas calculates the length of each string and returns a new Series with these lengths.