我想将1762毫秒更改为1.762秒。我尝试了以下方法,当我需要上述秒数(即“ 1.762”)时,它以一位数的秒数给我。

seconds=(rcccc/1000)%60
sec = int(seconds)

最佳答案

在解决此问题的多种方法中,一种方法是指定操作数之一是浮点数。

>>> 1762 / 1000 # Both integers
1

>>> 1762 / 1000.0 # One float
1.762

10-01 15:33