在 Python 中,要将一个数值保留两位小数,可以使用 `round()` 函数。以下是一个示例:
```python
number = 3.14159
rounded_number = round(number, 2)
print(rounded_number)
```
输出:
```
3.14
```
在这个示例中,我们使用 `round()` 函数将 `number` 变量的值保留两位小数。`round()` 函数的第一个参数是要保留小数的数值,第二个参数是要保留的小数位数。在这个例子中,我们将 `3.14159` 保留两位小数,得到 `3.14`。
如果您需要将保留两位小数的数值格式化为字符串,可以使用 `format()` 函数:
```python
number = 3.14159
formatted_number = format(number, ".2f")
print(formatted_number)
```
输出:
```
3.14
```
在这个示例中,我们使用 `format()` 函数将 `number` 变量的值保留两位小数,并将其格式化为字符串。`.2f` 是格式说明符,表示保留两位小数的浮点数。在这个例子中,我们将 `3.14159` 保留两位小数,得到字符串 `'3.14'`。