import math num=123.7567 #四捨五入 print(round(num))#124 print(round(num,2))#123.76 至小數點後2 位 print(format(num,'.3f'))#123.757 至小數點 ...
確定! 回上一頁