Python Strings and Associated Functions

A string is a finite sequence of characters.

Strings are immutable, this means that once a string has been created it cannot be changed. This means that none of the functions listed below will alter the original string variable.

Strings are iterable, you can cycle through and access each character individually.

capitalize()
center()
count()

endswith()