I am attempting to increment a string that has both letters and numbers in it - each of the characters in the string can either be 0-9 or a-z, no upper case letters.
Ideally I would hope it could be incremented in a +1 fashion in the sense that if the string was o6 to o7 o8 o9 oa ob etc to oz then p0 p1 etc by the way that's a lower base O not a zero
The method I use to increment only works by converting string to int, then incrementing by +1 and cannot be used here.
number = str(int(number) + 1)