Python Decimals格式

时间:2010-03-05 20:52:00

标签: python decimal

什么是像这样格式化python十进制的好方法?

1.00 - > '1'
1.20 - > '1.2'
1.23 - > '1.23'
1.234 - > '1.23'
1.2345 - > '1.23'

5 个答案:

答案 0 :(得分:97)

如果您使用的是Python 2.6或更高版本,请使用format

'{0:.3g}'.format(num)

对于Python 2.5或更早版本:

'%.3g'%(num)

说明:

{0}告诉format打印第一个参数 - 在本例中为num

冒号(:)之后的所有内容都指定了format_spec

.3将精度设置为3。

g删除无关紧要的零。看到 http://en.wikipedia.org/wiki/Printf#fprintf

例如:

tests=[(1.00, '1'),
       (1.2, '1.2'),
       (1.23, '1.23'),
       (1.234, '1.23'),
       (1.2345, '1.23')]

for num, answer in tests:
    result = '{0:.3g}'.format(num)
    if result != answer:
        print('Error: {0} --> {1} != {2}'.format(num, result, answer))
        exit()
    else:
        print('{0} --> {1}'.format(num,result))

产量

1.0 --> 1
1.2 --> 1.2
1.23 --> 1.23
1.234 --> 1.23
1.2345 --> 1.23

使用Python 3.6或更高版本,您可以使用f-strings

In [40]: num = 1.234; f'{num:.3g}'
Out[40]: '1.23'

答案 1 :(得分:20)

只有贾斯汀的第一部分答案是正确的。 使用“%。3g”不适用于所有情况,因为.3不是精度,而是总位数。尝试使用像1000.123这样的数字,它会中断。

所以,我会用Justin的建议:

>>> ('%.4f' % 12340.123456).rstrip('0').rstrip('.')
'12340.1235'
>>> ('%.4f' % -400).rstrip('0').rstrip('.')
'-400'
>>> ('%.4f' % 0).rstrip('0').rstrip('.')
'0'
>>> ('%.4f' % .1).rstrip('0').rstrip('.')
'0.1'

答案 2 :(得分:12)

这是一个可以解决问题的功能:

def myformat(x):
    return ('%.2f' % x).rstrip('0').rstrip('.')

以下是您的例子:

>>> myformat(1.00)
'1'
>>> myformat(1.20)
'1.2'
>>> myformat(1.23)
'1.23'
>>> myformat(1.234)
'1.23'
>>> myformat(1.2345)
'1.23'

修改

通过查看其他人的答案和实验,我发现g为你做了所有的剥离工作。所以,

'%.3g' % x

也很出色,与其他人的建议略有不同(使用'{0:.3}'。format()东西)。我想你的选择。

答案 3 :(得分:4)

只需使用Python的标准string formatting methods

>>> "{0:.2}".format(1.234232)
'1.2'
>>> "{0:.3}".format(1.234232)
'1.23'

如果您使用的是2.6以下的Python版本,请使用

>>> "%f" % 1.32423
'1.324230'
>>> "%.2f" % 1.32423
'1.32'
>>> "%d" % 1.32423
'1'

答案 4 :(得分:0)

您可以使用 3.6 中新增的短格式样式:

f'''{1.234:.1f}'''
Out: '1.2'

或者,作为测试:

f'''{1.234:.1f}''' == '1.2'
Out: True

顺便说一下,您也可以将其与变量一起使用。

x = 1.234
f'''{x:.1f} and {x:.2f} and {x}'''
Out: '1.2 and 1.23 and 1.234'