Python Fill String с 0 слева
>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'
Good Goosander
>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'