String wypełniający Python z 0 lewym

>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'
Good Goosander