copipe Python
copipe Python | 数値を0埋めする。
概要
format(数値, "0「0埋め後の桁数」")を使うことで、数値を0埋めすることができる。
コード
a = 123 b = format(a, "06") print(b)
結果
000123