python中forat
时间: 2023-07-16 20:11:48 浏览: 41
在 Python 中,format() 是一个字符串方法,它允许我们将变量插入到字符串中。它的语法如下:
```
string.format(value1, value2...)
```
其中,`string` 是要进行格式化的字符串,`value1`, `value2` 等是要插入到字符串中的值。例如:
```python
name = "Alice"
age = 30
print("My name is {} and I'm {} years old.".format(name, age))
```
输出结果为:
```
My name is Alice and I'm 30 years old.
```
在格式化字符串时,可以使用大括号 `{}` 作为占位符。如果需要在字符串中插入大括号本身,则需要使用两个大括号 `{{` 和 `}}`。例如:
```python
print("The price is {:.2f}{{}}.".format(3.1415926))
```
输出结果为:
```
The price is 3.14{}.
```
阅读全文