For example, if I want to + 1 to the string 'TB004' so it becomes 'TB005'?
To complicate things, the last two digits of 'TB004' must not exceed '12'. once they exceed 12, the last two digits should restart from 00
This is to be looped:
for i in range(25):
#Add 1 to the end of 'TB004', do not exceed 12 as the last two digits,
#when you do, restart string with 00 as final numbers.