formate如何使用
时间: 2023-07-20 12:14:03 浏览: 90
Format 的用法
`format()` 是 Python 中用于字符串格式化的内置函数。它可以将变量、表达式或值插入到一个字符串中的占位符位置。下面是一个使用 `format()` 的例子:
```python
name = "Tom"
age = 25
height = 1.8
print("My name is {}, I'm {} years old and {}m tall.".format(name, age, height))
```
输出结果为:
```
My name is Tom, I'm 25 years old and 1.8m tall.
```
在上面的例子中,通过使用 `{}` 占位符,我们将变量 `name`、`age` 和 `height` 插入到字符串中。`format()` 函数根据传递给它的参数将这些值插入到字符串中。您可以通过在占位符中指定索引值来控制插入的顺序:
```python
print("My name is {0}, and I'm {1} years old. {0}, nice to meet you!".format(name, age))
```
输出结果为:
```
My name is Tom, and I'm 25 years old. Tom, nice to meet you!
```
在上面的例子中,我们通过使用 `{}` 占位符并在占位符中指定索引值,将变量 `name` 和 `age` 插入到字符串中。请注意,我们在占位符中使用了重复的索引值 `{0}`,以便在字符串中多次使用同一个变量。
阅读全文