How to set zero padding format for decimal value in Python

1 Answer

0 votes
import decimal
 
d = decimal.Decimal(1.1)     

print('{:07.1}'.format(d))     
print('{:07.2}'.format(d))     
print('{:07.5}'.format(d))
print('{:09.4}'.format(d))
print('{:09.12}'.format(d))



'''
run:

0000001
00001.1
01.1000
00001.100
1.10000000000

'''

 



answered Jun 8, 2019 by avibootz

Related questions

1 answer 66 views
1 answer 160 views
1 answer 175 views
1 answer 83 views
1 answer 79 views
1 answer 74 views
1 answer 84 views
...