Pythonで浮動小数点数を簡単にきれいに表示する方法 round() 関数を使用する方法:num = 3.14159 rounded_num = round(num, 2) print(rounded_num) # 結果: 3.14>>More