Pythonにおける浮動小数点数のフォーマット方法とf-stringの使用 小数点以下の桁数を指定する:num = 3.14159265 formatted_num = f"{num:.2f}" print(formatted_num) # 結果: 3.14>>More