I thought I wouldn't sweat the small stuff

When it comes to coding in Python, I thought I wouldn't have to sweat the small stuff. I was wrong. Every little move involves small stuff. My trickled-in thought was simple enough: Create a template, in the form of a comment, that identifies positions in a list by their index numbers. This way I wouldn't have to hand count them each time. I could just position the template above or below a print out of my list object and determine that way, the index of each item in a list of same-sized items. And of course, the template should be easily generated using the range() function rather than me tediously fashioning it by hand. NOT so !!! Realized after the fact that the integers 0 to 9 are single digit while 10-99 are two digits. And if I had lists of 100-999 that would be 3 digits each. So outputs of the print statements are not inherently spaced apart evenly! It was supposed to come out like this (the first two lines and not the last one): # 00 01 02 03 04 05 06 07...