Python输出怎么设置每项宽度和对齐方式?代码如下

Python010

Python输出怎么设置每项宽度和对齐方式?代码如下,第1张

这样

print '%-20s[OK]' % s #后面的s为要输出的内容 20 是文字长度# 如果文字要右对齐,可以将%-20s改为%20s

截图

python中使用format()方法格式化数字设置右对齐:<(默认)左对齐、>右对齐、^ 中间对齐、= (只用于数字)在小数点后进行补齐

>>>print('{} and {}'.format('hello','world')) # 默认左对齐

hello and world

>>>print('{:10s} and {:>10s}'.format('hello','world')) # 取10位左对齐,取10位右对齐

hello and world

>>>print('{:^10s} and {:^10s}'.format('hello','world')) # 取10位中间对齐

helloand world

>>>print('{} is {:.2f}'.format(1.123,1.123)) # 取2位小数

1.123 is 1.12

>>>print('{0} is {0:>10.2f}'.format(1.123)) # 取2位小数,右对齐,取10位

1.123 is 1.12

更多Python知识请关注Python自学网。