Truncate to three decimals in Python

后端 未结 20 2485
故里飘歌
故里飘歌 2020-11-27 06:20

How do I get 1324343032.324?

As you can see below, the following do not work:

>>1324343032.324325235 * 1000 / 1000
1324343032.3243253
>>i         


        
20条回答
  •  眼角桃花
    2020-11-27 06:37

    You can use an additional float() around it if you want to preserve it as a float.

    %.3f'%(1324343032.324325235)
    

提交回复
热议问题