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
>>> x = 'lipsum' >>> x.replace(x[:3], '') 'sum'