15

更新:到目前为止,答案显示它似乎是 OSX 上与平台相关的错误,与特定的语言环境设置有关,因为它们不完全支持分组数字。

更新 2:我刚刚在 Python 的错误跟踪器上打开了一个问题。让我们看看是否有解决此问题的方法。


我想根据德国编号约定格式化整数和浮点数。这可以使用格式语言和演示类型n,但在我的平台上失败了。

  • 平台:OS X 10.8.2(山狮)
  • Python:2.7.3 64 位(v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin

例子:

  • 1234=>1.234
  • 1234.56=>1.234,56
  • 1000000=>1.000.000

到目前为止我已经尝试过:

  1. 设置德语语言环境

    import locale
    locale.setlocale(locale.LC_ALL, 'de_DE')
    
  2. 格式规范选项,仅识别英文格式。

    '{:,}'.format(1234)
    '1,234'
    
    '{:,}'.format(1234.56)
    '1,234.56'
    
    '{:,}'.format(1000000)
    '1,000,000'
    
  3. 根据Python 文档,整数和浮点表示类型n应该做我想做的事,但事实并非如此。

     '{:n}'.format(1234)
     '1234'
    
     '{:n}'.format(1234.56)
     '1234,56'  # at least the comma was set correctly here
    
     '{:n}'.format(1000000)
     '1000000'
    
     '{:n}'.format(12345769.56)
     '1,23458e+07'  # it's doing weird things for large floats
    
  4. 受@JFSebastian启发的更多示例和比较:

    for n in [1234, 1234.56, 1000000, 12345769.56]:
        print('{0:,} {0:n}'.format(n))
        fmt, val = "%d %f", (n, n)
        print(fmt % val)
        print(locale.format_string(fmt, val))
        print(locale.format_string(fmt, val, grouping=True))
        print('-'*60)
    

    这会在我的平台上产生以下错误结果:

        1,234 1234
        1234 1234.000000
        1234 1234,000000
        1234 1234,000000
        ------------------------------------------------------------
        1,234.56 1234,56
        1234 1234.560000
        1234 1234,560000
        1234 1234,560000
        ------------------------------------------------------------
        1,000,000 1000000
        1000000 1000000.000000
        1000000 1000000,000000
        1000000 1000000,000000
        ------------------------------------------------------------
        12,345,769.56 1,23458e+07
        12345769 12345769.560000
        12345769 12345769,560000
        12345769 12345769,560000
        ------------------------------------------------------------
    

    我没有得到的正确结果如下所示:

        1,234 1.234
        1234 1234.000000
        1234 1234,000000
        1.234 1.234,000000
        ------------------------------------------------------------
        1,234.56 1.234,56
        1234 1234.560000
        1234 1234,560000
        1.234 1.234,560000
        ------------------------------------------------------------
        1,000,000 1.000.000
        1000000 1000000.000000
        1000000 1000000,000000
        1.000.000 1.000.000,000000
        ------------------------------------------------------------
        12,345,769.56 1,23458e+07 
        12345769 12345769.560000
        12345769 12345769,560000
        12.345.769 12.345.769,560000
        ------------------------------------------------------------
    

你有一个只使用格式语言的解决方案吗?有什么方法可以欺骗我平台上的区域设置以接受分组?

4

5 回答 5

10

超级丑陋,但从技术上回答了这个问题:

来自PEP 378

'{:,}'.format(1234.56).replace(",", "X").replace(".", ",").replace("X", ".")
'1.234,56'
于 2013-01-11T21:50:36.360 回答
6

不幸的是, Python 的locale模块实现在不同平台之间存在很大差异。它实际上只是 C 库供应商的语言环境概念的一个轻包装。

因此,在 Windows 7 上,使用 Python 2.7.3 64 位,这恰好可以工作(注意:语言环境在 Windows 中具有不同的名称):

>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'deu_deu')
'German_Germany.1252'
>>> '{0:n}'.format(1234.56)
'1.234,56'

是否使用千位分隔符可以通过检查“本地约定”来确定:

>>> locale.localeconv()['grouping'] # On Windows, 'deu_deu'.
[3, 0] # Insert separator every three digits.

>>> locale.localeconv()['grouping'] # On OS X, 'de_DE'.
[127] # No separator (locale.CHAR_MAX == 127).

>>> locale.localeconv()['grouping'] # Default C locale.
[] # Also no separator.
于 2013-01-11T22:31:44.283 回答
5

当与德语语言环境一起使用时,这对我有用:

>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'de_DE')
'de_DE'
>>> '{0:n}'.format(1234.56)
'1.234,56'

这是在 Windows 7 下的 Cygwin 中:

>>> import sys
>>> print sys.version
2.6.5 (r265:79063, Jun 12 2010, 17:07:01)
[GCC 4.3.4 20090804 (release) 1]
于 2013-01-11T22:06:43.700 回答
2

更难看的是split,joinreplace

>>> amount = '{0:,}'.format(12345.67)
>>> amount
'12,345.67'
>>> ','.join([s.replace(',','.') for s in amount.split('.')])
'12.345,67'
于 2018-03-13T13:40:31.030 回答
1

@Lattyware 要求我提供我自己的解决方案,以便根据德国编号约定在不使用格式语言的情况下包含分隔符。这是我能想到的最佳解决方案:

import re

def group_num(num):
    if isinstance(num, (int, float)):
        if isinstance(num, float):
            head, tail = str(num).split('.')
        elif isinstance(num, int):
            head, tail = str(num), ''
        digit_parts = re.findall(r'\d{1,3}\-?', ''.join(head[::-1]))
        num = '.'.join(part[::-1] for part in digit_parts[::-1])
        if tail:
            num = ','.join((num, tail))
        return num
    else:
        raise TypeError(num, 'is not of type int or float')

>>> group_num(1234)
'1.234'
>>> group_num(123456.7890)
'123.456,789'
>>> group_num(-1000000000.12)
'-1.000.000.000,12'

与@Jon-Eric 给出的解决方案相比,性能也相当不错。

%timeit group_num(1000000000.12)
10000 loops, best of 3: 20.6 us per loop

# For integers, it's faster since several steps are not necessary
%timeit group_num(100000000012)
100000 loops, best of 3: 18.2 us per loop

%timeit '{:,}'.format(1000000000.12).replace(",", "X").replace(".", ",").replace("X", ".")
100000 loops, best of 3: 2.63 us per loop

%timeit '{:,}'.format(100000000012).replace(",", "X").replace(".", ",").replace("X", ".")
100000 loops, best of 3: 2.01 us per loop

如果您知道如何优化我的解决方案,请告诉我。

于 2013-01-12T20:35:47.797 回答