pythonformat
时间: 2023-08-03 22:07:47 浏览: 141
python中format使用
在 Python 中,可以使用 "{:.2f}" 格式化字符串来保留两位小数。例如:
```
x = 3.14159265
print("{:.2f}".format(x)) # 输出 3.14
```
也可以使用 `round(x,2)` 来四舍五入保留两位小数.
```
x = 3.14159265
print(round(x,2)) # 输出 3.14
```
阅读全文