string de preenchimento de python com 0 esquerda
>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'
Good Goosander
>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'