copipe Python
copipe Python | ゼロ埋めする。
概要
text.zfill(文字数)を使ってゼロ埋めすることができる。
コード
n = 3 text = str(n).zfill(4) print(text)
結果
0003