ser.str.len()
ser.str.len()
Counts the number of characters for each element in the Series.
- Returns:
- Returns a Series with the number of characters of each element.
- Return Type:
- Series
comment_ser = pets.get('Owner_Comment')
comment_ser
- 0" There are no bad dogs, only bad owners."
- 1"My best birthday present ever!!!"
- 2"****All you need is love and a cat.****"
- 3"Love is a wet nose and a wagging tail."
- 4"Be the person your dog thinks you are."
- 5"No, thank you!"
- 6"No, thank you!"
- 7"No, thank you!"
comment_ser.str.len()
- 045
- 132
- 239
- 338
- 438
- 514
- 614
- 714