这应该很容易。
这是我的数组(而是一种生成代表性测试数组的方法):
>>> ri = numpy.random.randint
>>> ri2 = lambda x: ''.join(ri(0,9,x).astype('S'))
>>> a = array([float(ri2(x)+ '.' + ri2(y)) for x,y in ri(1,10,(10,2))])
>>> a
array([ 7.99914000e+01, 2.08000000e+01, 3.94000000e+02,
4.66100000e+03, 5.00000000e+00, 1.72575100e+03,
3.91500000e+02, 1.90610000e+04, 1.16247000e+04,
3.53920000e+02])
我想要一个字符串列表,其中 '\n'.join(list_o_strings) 将打印:
79.9914
20.8
394.0
4661.0
5.0
1725.751
391.5
19061.0
11624.7
353.92
我想在左侧和右侧放置空格(但没有必要)。
如果这就是小数点后的全部内容,我想要小数点后的零。
我不想要科学记数法。
..而且我不想丢失任何有效数字。(在 353.98000000000002 中,2 不重要)
是的,很高兴想要..
Python 2.5's%g, %fx.x
等要么让我迷惑,要么做不到。我还没试过import decimal
。我也看不到NumPy这样做(尽管array.__str__
andarray.__repr__
是十进制对齐的(但有时返回科学)。
哦,速度很重要。我在这里处理大数组。
我目前的解决方法是:
- 到 str(a) 并解析 NumPy 的括号
- 到 str(e) 数组中的每个元素和 split('.') 然后填充和重建
- 到 a.astype('S'+str(i)) 其中 i 是 max(len(str(a))),然后填充
似乎应该有一些现成的解决方案......(但不是必需的)
dtype
当是 float64时,最佳建议失败:
>>> a
array([ 5.50056103e+02, 6.77383566e+03, 6.01001513e+05,
3.55425142e+08, 7.07254875e+05, 8.83174744e+02,
8.22320510e+01, 4.25076609e+08, 6.28662635e+07,
1.56503068e+02])
>>> ut0 = re.compile(r'(\d)0+$')
>>> thelist = [ut0.sub(r'\1', "%12f" % x) for x in a]
>>> print '\n'.join(thelist)
550.056103
6773.835663
601001.513
355425141.8471
707254.875038
883.174744
82.232051
425076608.7676
62866263.55
156.503068