标签: python
有没有办法在python中格式化数字,如下所示:
DecimalFormat("00000.00000").format(getSettlmentPrice()).replace(".", "")
这是在java中完成的。
答案 0 :(得分:0)
print "%11.5f" % settlementPrice
格式为总宽度(包括小数点),然后是要保留的小数位数。见format