Is there a way to substring a string in Python, to get a new string from the third character to the end of the string?
Maybe like myString[2:end]?
myString[2:end]
A common way to achieve this is by string slicing.
MyString[a:b] gives you a substring from index a to (b - 1).
MyString[a:b]