我正在寫這個程序,我想將打印到十個位置的時間四捨五入。如何在python中四捨五入取得兩個數字
from timeit import default_timer
start= default_timer()
#This is where i have a bunch of other code that isn't relavant
duration = default_timer()-start
print (duration)
我試圖在打印它之前使用round(duration,2)並且沒有工作。我只是不知道如何將它舍入。可能有一個簡單的答案,但我無法弄清楚。謝謝!!
的可能的複製[限制花車到小數點後分](https://stackoverflow.com/questions/455612/limiting-floats-to-two-decimal-points ) – Arex