解决python让数字右对齐的方法
发布时间:2020-07-03 15:42:31
来源:亿速云
阅读:121
作者:清晨
不懂解决python让数字右对齐的方法?其实想解决这个问题也不难,下面让小编带着大家一起学习怎么去解决,希望大家阅读完这篇文章后大所收获。
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位中间对齐hello and 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让数字右对齐的方法内容对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,遇到问题就找亿速云,详细的解决方法等着你来学习!