python-字符串处理-字符串补全填充固定长度(补0)的三种方法-CSDN博客

网站介绍:'''原字符串左侧对齐, 右侧补零:'''str.ljust(width,'0')input: '789'.ljust(32,'0')output: '78900000000000000000000000000000''''原字符串右侧对齐, 左侧补零:方法一:'''str.rjust(width,'0')input: '798'.rjust(32,'0')out..._python 补全6位