编程环境:Python 3.8.5
1. 使用srt.ljust(width,‘string’)或者srt.rjust(width,‘string’)
>>> str='abc' >>> str.ljust(9,'0') 'abc000000' >>> str