python如何实现format对齐输出?
2057次观看
标签:
如何实现
python
format
老师回答
方法一:
:<{}
左对齐 :^{}
中间对齐 :>{}
右对齐
对齐符号后面的{}
表示变量的总宽度
print("{:<{}} {:<{}} {:<{}}".format("yifu",25, "chenyichenyi",50, 0.23655,20))
yifu chenyichenyi 0.23655
方法二:
数字对应上面的总宽度,s
表示字符串,10f.8
取10位,保留8位小数位
print("{:<25s} {:<50s} {:<10f.8}".format("yifu", "chenyichenyi", 0.23655))
yifu chenyichenyi 0.23655000
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐