我必须计算播放器中正在播放的歌曲的百分比
例如,当:
CurrentTime = 11 (Int)
TotalTime = 222 (Int)
我需要播放的百分比,我通过以下方式做到这一点
PlayedBufferPercent = (CurrentTime*100)/TotalTime
-> 手动计算结果为 4.95495495495,符合预期。现在我想将其四舍五入为 5 个十进制值 = 4.95496,我使用 python 尝试了以下但没有产生正确的输出。
PlayedBufferPercent = float((CurrentTime*100)/TotalTime)
PlayedBufferPercent1 = ("{0:.5f}" .format(PlayedBufferPercent))
结果 = 4.00000 但我想要 4.95496,请帮忙