在Python中,可以使用以下幾種方法對int進行取整操作:
import math
x = 3.9
result = math.floor(x)
print(result) # 輸出結果為3
import math
x = 3.2
result = math.ceil(x)
print(result) # 輸出結果為4
x = 3.7
result = round(x)
print(result) # 輸出結果為4
另外,可以通過對int值進行除法運算再取整,實現向下取整、向上取整和四舍五入。例如,int(3.9)將返回3,int(3.2)將返回3,int(3.7)將返回4。