Source Code:
(back to article)
s = "123" s = s.rjust(5, '0') print(s)
Result:
Report an issue