Answers for "python how to display leading zeros"

13

python convert number to string with leading zeros

str(1).zfill(2)
# 1 will be '01'

str(23).zfill(4)
# 23 will be '0023'
Posted by: Guest on July-24-2020
0

print number with leading zeros

int n = 123;
printf("%0.5d", n); // 00123
Posted by: Guest on April-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language