how to pop the last two element of a string in python code example
Example: python remove last characters from string
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed