标签:form class pytho style python 冒号 格式 指定 height
1 ‘{:08}‘.format(11) 2 3 4 5 mat = "{:020}\t{:028}\t{:032}" 6 print(mat.format(1,2, 3))
冒号后面指定输出宽度,:后的0表示用0占位。
out:
1 ‘00000011‘ 2 3 4 Name:Aviad Age:00000025 Height:00001.83
标签:form class pytho style python 冒号 格式 指定 height
原文地址:https://www.cnblogs.com/jiangkejie/p/13192602.html