How to print integer with left padding zeros of specific width in Python

1 Answer

0 votes
x = 7
y = 8915
 
print("(left padding zeros, width = 2): {:0>2d}".format(x));
 
print("(left paddingzeros, width = 7): {:0>7d}".format(y));
 
 
 
 
'''
run:
 
(left padding zeros, width = 2): 07
(left paddingzeros, width = 7): 0008915
 
'''

 



answered Sep 2, 2021 by avibootz
edited Sep 2, 2021 by avibootz

Related questions

...