String Methods
String methods are special functions for working with strings.
Common string methods include str.upper
, str.title
, and str.replace
len(my_cool_string)
is not a method
len
does not use dot notation, so it is a regular function, not a method.