Python: Strings - Methods

String methods Almost everything in Python is an object. Strings are objects. Objects often have functionality built into them in special functions called methods. Methods are like other functions we've seen but are associated with specific objects. For example, string objects have a find() method. The sytax is str.find(str, start=0, end=len ... ................
................