How might one remove the first x characters from a string? For example, if one had a string lipsum, how would they remove the first 3 characters and get a resul
lipsum
>>> text = 'lipsum' >>> text[3:] 'sum'
See the official documentation on strings for more information and this SO answer for a concise summary of the notation.