用python的format输出3.1415926保留两位小数
时间: 2023-08-11 16:40:22 浏览: 165
python保留两位小数
你可以使用 Python 的格式化字符串(format string)来输出保留小数数的浮点数,例如:
```python
pi = 3.1415926
pi_formatted = "{:.2f}".format(pi)
print(pi_formatted)
```
这里的 `"{:.2f}"` 表示保留两位小数的格式化字符串,其中 `:` 表示格式化说明符的开始,`.2f` 表示浮点数保留两位小数。上述代码会输出 `3.14`。
阅读全文