python中的{:.2f}
时间: 2023-11-23 12:54:18 浏览: 225
python视频教程配套讲义: 03Python基本输入输出语句
Python中的{:.2f}是一种字符串格式化工具,用于将浮点数保留两位小数并转换为字符串。它的使用方法如下:在字符串中使用{}占位符,然后在字符串后面使用.format()方法传入需要格式化的变量,其中:.2f表示保留两位小数。例如,'The result is {:.2f}'.format(3.14159)将返回'The result is 3.14'。
举个例子:
```python
price = 9.99
print("The price is {:.2f} dollars.".format(price))
```
输出结果为:
```
The price is 9.99 dollars.
```
另外,还可以使用f-string来实现相同的效果,例如:
```python
price = 9.99
print(f"The price is {price:.2f} dollars.")
```
输出结果为:
```
The price is 9.99 dollars.
```
阅读全文