format左右中对齐
让数据左对齐
"{:!<30}".format(数据)
让数据右对齐
"{:!>30}".format(数据)
让数据居中对齐
"{:!^30}".format(数据)
20240906_150054 python 内容对齐方式 format
阅读 17
2024-09-06
让数据左对齐
"{:!<30}".format(数据)
让数据右对齐
"{:!>30}".format(数据)
让数据居中对齐
"{:!^30}".format(数据)
相关推荐
精彩评论(0)