Python math. ceil()を使って数値の小数点第二位を切り上げるサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
mathをインポートします。
import math
そして、mathからceil()を呼び出します。
math.ceil()の引数に10を掛けた数値を指定します。
math.ceil()の結果を10で割ります。
result = math.ceil(value * 10) / 10
使用例
import math result1 = math.ceil(1.42 * 10) / 10 result2 = math.ceil(10.24 * 10) / 10 result3 = math.ceil(3.311111 * 10) / 10 print(result1) print(result2) print(result3)
実行結果
1.5
10.3
3.4