为什么我的圆形函数无法正常工作?

问题描述 投票:0回答:1

代码:

if start > 60:
    print("It took the program",round(time.time()- start) // 60,"minute(s) and",round(time.time()- start,2) % 60,"second(s) to finish.")

代码中的问题是这部分:

round(time.time()- start,2)

它打印:0.000000000000

它应该打印:0.00

python python-3.x rounding
1个回答
0
投票

在一轮中使用除法/模数符号格式化代码:

round((time.time() - start) % 60)
© www.soinside.com 2019 - 2024. All rights reserved.