Python 数値の10の位を四捨五入するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
result = round(number, -2)
round()は、第1引数の数値の10の位を四捨五入した値を返します。
使用例
num = 2272 num2 = 4857 num3 = 341 print(round(num, -2)) print(round(num2, -2)) print(round(num3, -2))
実行結果
2300
4900
300