>>> 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.
>>> 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.