格式化要打印的数字时,12位数字正在格式化后立即用冒号格式化。为什么会这样?这是AIX系统上的Python 2.7。
$ uname -a ; /opt/bin/python2.7
AIX myserver 1 6 00F6A5CC4C00
Python 2.7.12 (default, Sep 29 2016, 12:02:17) [C] on aix5
Type "help", "copyright", "credits" or "license" for more information.
>>> '{0:.10f}'.format(123456789012)
'123456789011.:000000000'
>>> from decimal import Decimal
>>> u=123456789012
>>> print "%.10f" % Decimal(u)
123456789011.:000000000
更多信息:
不是每12位数字:
>>> for x in range(123456789010,123456789020):
... print '{0:.10f}'.format(x)
...
12345678900:.0000000000
123456789010.:000000000
123456789011.:000000000
123456789013.0000000000
123456789013.:000000000
123456789015.0000000000
123456789016.0000000000
123456789017.0000000000
123456789017.:000000000
123456789019.0000000000
任何其他长度数字都不会发生这种情况。另外,我尝试了bash和perl的printf,而且这两种情况都没有发生。
这里发生了什么?
根据要求,这是一个screen shot video。
更多要求的信息:
>>> import locale
>>> locale.getdefaultlocale()
('en_US', 'ISO8859-1')
user2357112 pastebin代码的结果:
>>> import ctypes
>>> f=ctypes.pythonapi.PyOS_double_to_string
>>> f.argtypes=ctypes.c_double,ctypes.c_char,ctypes.c_int,ctypes.c_int,ctypes.POINTER(ctypes.c_int))
>>> f.restype=ctypes.c_char_p
>>> print f(123456789012.0, 'f', 10, 0, None)
123456789011.:000000000
Antti_Happa的pastebin正确打印了所有数字。
使用格式r给出:
print 'e: {0:.10e}\nf: {0:.10f}\ng: {0:.10g}\nr: {0:0r}'.format(x)
ValueError: Unknown format code 'r' for object of type 'int'
使用e,f和g格式提供以下内容:
for x in range(123456789000,123456789019):
print 'e: {0:.10e}\nf: {0:.10f}\ng: {0:.10g}'.format(x)
e: 1.2345678900e+11
f: 123456789000.0000000000
g: 1.23456789e+11
e: 1.2345678900e+11
f: 123456789000.:000000000
g: 1.23456789e+11
e: 1.2345678900e+11
f: 123456789001.:000000000
g: 1.23456789e+11
e: 1.2345678900e+11
f: 123456789003.0000000000
g: 1.23456789e+11
我无权在此服务器上安装或更新任何内容。我可以申请更新版本,但此类更改请求需要相当长的时间。此外,其他程序依赖于此安装,并且需要进行大量测试。
我被告知只安装IBM提供的软件包,并且IBM提供的最新python 2.7软件包是2.7.12。
我已经修复了#34;做的问题
othervar = '{0:.10f}'.format(somevar).replace(':', '0')
这是非常不安全的,我知道,但是...... 耸肩
哎呀!我刚刚注意到一个错误的错误... 123456789012
被格式化为少一个:123456789011.:0000000000
...这是一个奇怪的错误。
答案 0 :(得分:1)
虽然不是"答案",但我可以在AIX上运行稍微更新的版本给你我的结果。
很抱歉,我无法复制您的问题。
[lholtscl@ibm3 ~]$ python
Python 2.7.13 (default, Sep 7 2017, 21:08:50) [C] on aix7
Type "help", "copyright", "credits" or "license" for more information.
>>> print "%.10f" % 123456789012
123456789012.0000000000
>>> '{0:.10f}'.format(123456789012)
'123456789012.0000000000'