python number padding code example
Example 1: pad zeros to a string python
my_str='9'
my_str.zfill(2)
Example 2: fill zero behind number python
f_num.strip().zfill(2)
Example 3: padding in python
MyString = "ABC"
print("'" + MyString.ljust(5) + "'") #Left Justified
print("'" + MyString.rjust(5) + "'") #Right Justified
Output:
'ABC '
' ABC'