format numbers
#http://stackoverflow.com/questions/733454/best-way-to-format-integer-as-string-with-leading-zeros def formatNumbers(number, length): return '%0*d' % (length, number)