如何右对齐一列数字?

2024-04-25 19:49:35 发布

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

我有以下python代码:

#This program converts the speeds 60 KPH
#through 130 KPH (in 10 kph increments)
#to MPH

#Global constants
START = 60
END = 131
INCREMENT = 10
CONVERSION_FACTOR = 0.6214

def main():
    #Print the table headings
    print('KPH\t\tMPH')
    print('----------------')

    #Print the speeds
    for kph in range(START, END, INCREMENT):
        mph = kph * CONVERSION_FACTOR
        print(kph, '\t\t', format(mph, '.1f'))

#Call the main function
main()

运行此代码得到以下结果:

KPH     MPH
----------------
60       37.3
70       43.5
80       49.7
90       55.9
100          62.1
110          68.4
120          74.6
130          80.8

如何右对齐第二列,以便更正确地显示结果?


Tags: the代码inmainstartendprintfactor
2条回答

您也可以使用printf样式格式化来指定宽度。

>>> print('%10.2f' % 1.23456)
      1.12

在您的示例中,您可以使用:

print('%-10i%.1f' % (kph, mph))

使用Format Specification Mini-Language

"{:>10.3}".format(12.34)

结果(使用_表示空格):

______12.3

相关问题 更多 >