You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
272 B
12 lines
272 B
7 years ago
|
# test float formatting
|
||
|
|
||
|
# general rounding
|
||
|
for val in (116, 1111, 1234, 5010, 11111):
|
||
|
print('%.0f' % val)
|
||
|
print('%.1f' % val)
|
||
|
print('%.3f' % val)
|
||
|
|
||
|
# make sure rounding is done at the correct precision
|
||
|
for prec in range(8):
|
||
|
print(('%%.%df' % prec) % 6e-5)
|