Python學習筆記:向上取整

#向上取整-方法1 import math while 1==1:     num=math.ceil(round(float(input('請輸入一個小數:')),2))     print(num) #向上取整-方法2 import math while 1==1: #round對浮點數近似取值,各python版本、浮點數的精度有影響,對浮點數精度有要求的不要用round     num=ro
相關文章
相關標籤/搜索