I have...
>>> for i in range(11):
... for j in range(103):
... print "./", '%02d' % i, "/IMG", '%04d' % j, ".jpg"
...
>>> (prints a whole bunch of lines representing files in a group of directories)
...and what I want instead is to concatenate the little strings and ints in those lines into single strings, and append it to a list which will comprise approximately 1100 elements, each of which is the name of a file. How can I amend the loop?