So, I have a string, for example:
string = '34567'
I know that string[-1] will return me '7', but how do I get like '567'? Because it doesn't work if I start from the middle:
string[2:-1] == '56'
Usually, since the last number doesn't count, you just add 1 to it, but in this case you can't do it
So how do I print '567'?