「Python3.9」math.ceilメソッドで切り上げを行うサンプル
環境
Python 3.9.13
Windows 11 Pro 21H2 64bit
PyCharm 2022.2.1 (Community Edition)
構文
import math
mathモジュールをインポートしています。
math.ceilメソッドは、切り上げを行います。
使用例
# coding: utf-8 import math resA = 5.26 print("切り上げを行う結果1") print(math.ceil(resA)) resB = 7.82 print("切り上げを行う結果2") print(math.ceil(resB))
実行結果
切り上げを行う結果1
6
切り上げを行う結果2
8