Python Strings
A string is an inmutable sequence of characters. This post covers string operations, including iteration, slicing, concatenation, comparison, string methods, and functions. text = 'abc' letter = text[0] Iteration text = 'abc' for letter in text: print(letter) Slicing The start index is inclusive; the end index is exclusive. If the end index goes beyond