在Python2.7中格式化

2024-09-27 07:25:41 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个列格式问题:

from math import sqrt
n = raw_input("Example Number? ")
n = float(n)
sqaureRootOfN = sqrt(n)

print '-'*50
print ' # of Decimals', '\t', 'New Root', '\t', 'Percent error'
print '-'*50
for a in range(0,10):
    preRoot = float(int(sqaureRootOfN * 10**a))
    newRoot = preRoot/10**a
    percentError = (n - newRoot**2)/n*100
    print ' ', a, '\t\t', newRoot, '\t\t', percentError, '%'

结果是:

enter image description here

不在同一列!?!


Tags: fromimportnumberinputrawexample格式math
3条回答

@Bjorn使用String.format规范给出了正确的答案。Python的字符串格式化程序有非常强大的方法来正确地对齐事物。下面是一个例子:

from math import sqrt
n = raw_input("Example Number? ")
n = float(n)
sqaureRootOfN = sqrt(n)

print '-'*75
print ' # of Decimals', ' ' * 8, 'New Root', ' ' * 10, 'Percent error'
print '-'*75
for a in range(0,10):
    preRoot = float(int(sqaureRootOfN * 10**a))
    newRoot = preRoot/10**a
    percentError = (n - newRoot**2)/n*100
    print " {: <20}{: <25}{: <18}".format(a, newRoot, str(percentError) + ' %')

注意,我使用空格来分隔东西,而不是制表符。这是因为制表符实际上不是您想在这里使用的,因为制表符的空间规则不一致(并且取决于您的终端/查看器设置)。

答案是这样的:

---------------------------------------------------------------------------
 # of Decimals          New Root            Percent error
---------------------------------------------------------------------------
 0                   9.0                      18.1818181818 %   
 1                   9.9                      1.0 %             
 2                   9.94                     0.198383838384 %  
 3                   9.949                    0.0175747474747 % 
 4                   9.9498                   0.00149490909092 %
 5                   9.94987                  8.7861717162e-05 %
 6                   9.949874                 7.45871112931e-06 %
 7                   9.9498743                1.4284843602e-06 %
 8                   9.94987437               2.14314187048e-08 %
 9                   9.949874371              1.33066711409e-09 %

这就是标签的工作原理。要获得正确的格式,应该使用^{}。以你的例子来说,可能是这样的:

print "{0:2d}          {1:9.8f} {2:f} %".format(a, newRoot, percentError)

使用str.format

import math
n = float(raw_input("Example Number? "))
squareRootOfN = math.sqrt(n)

print('''\
{dashes}
{d:<16}{r:<15}{p:<}
{dashes}'''.format(dashes = '-'*50, d = ' # of Decimals', r = 'New Root', p = 'Percent error'))
for a in range(0,10):
    preRoot = float(int(squareRootOfN * 10**a))
    newRoot = preRoot/10**a
    percentError = (n - newRoot**2)/n
    print('  {d:<14}{r:<15}{p:13.9%}'.format(d = a, r = newRoot, p = percentError))

收益率

--------------------------------------------------
 # of Decimals  New Root       Percent error
--------------------------------------------------    
  0             9.0            18.181818182%
  1             9.9             1.000000000%
  2             9.94            0.198383838%
  3             9.949           0.017574747%
  4             9.9498          0.001494909%
  5             9.94987         0.000087862%
  6             9.949874        0.000007459%
  7             9.9498743       0.000001428%
  8             9.94987437      0.000000021%
  9             9.949874371     0.000000001%

一些技巧/细节:

  • 您可以在 多行字符串。
  • 格式为{p:13.9%}的百分比符号允许您离开 percentError作为十进制数(不乘以100)并且 把%放在最后。

相关问题 更多 >

    热门问题