📜  python代码示例中的格式数字差异

📅  最后修改于: 2022-03-11 14:47:19.197000             🧑  作者: Mango

代码示例1
# make the total string size AT LEAST 9 (including digits and points), fill with zeros to the left
'{:0>9}'.format(3.499)
# >>> '00003.499'