Python中有多種方法可以對算式進行取整操作。以下是其中一些方法:
# 向上取整 import math result = math.ceil(3.6) # 輸出4 # 向下取整 import math result = math.floor(3.6) # 輸出3 # 四舍五入取整 result = round(3.6) # 輸出4 result = round(3.2) # 輸出3 # 取整到指定位數 result = round(3.1415926, 2) # 輸出3.14
代碼中我們通過調用math庫中的函數來進行向上和向下取整,使用round函數可以進行四舍五入取整操作。同時,round函數還可以指定取整位數,從而實現更精確的取整操作。