Python中format
时间: 2023-07-15 15:12:01 浏览: 89
format是Python中用于格式化字符串的方法。它可以让我们将变量或值插入到字符串中,并且可以指定它们的格式。
基本语法:
```
"{} {}".format(value1, value2)
```
其中,花括号 {} 表示要插入值的位置,可以使用数字指定位置,也可以不用指定位置,这时候Python会按照花括号出现的顺序将值插入。
下面是一些使用format的例子:
1. 不指定位置
```
text = "I like to eat {}, {} and {}."
print(text.format("apples", "bananas", "oranges"))
```
结果:
```
I like to eat apples, bananas and oranges.
```
2. 指定位置
```
text = "I like to eat {0}, {2} and {1}."
print(text.format("apples", "bananas", "oranges"))
```
结果:
```
I like to eat apples, oranges and bananas.
```
3. 指定值的格式
```
num = 3.1415926
print("The value of pi is {:.2f}".format(num))
```
结果:
```
The value of pi is 3.14
```
在format中,冒号 : 后面可以加上各种格式化选项,例如 {:.2f} 表示保留两位小数的浮点数。更多的格式化选项可以参考Python官方文档。
阅读全文