pythonformat字符串格式化
时间: 2023-10-29 22:54:33 浏览: 155
Python格式化字符串f-string概览(小结)
Python 中的字符串格式化有多种方式,其中比较常见的是使用 `format` 方法和 f-string。
1. 使用 `format` 方法:
```python
name = "John"
age = 25
print("My name is {}, and I am {} years old.".format(name, age))
```
输出:`My name is John, and I am 25 years old.`
2. 使用 f-string(Python 3.6+):
```python
name = "John"
age = 25
print(f"My name is {name}, and I am {age} years old.")
```
输出:`My name is John, and I am 25 years old.`
这些方法都可以在字符串中通过占位符 `{}` 来指定需要插入的变量,并用对应的值进行替换。在 `format` 方法中,你可以在括号内按顺序指定变量,也可以使用索引来指定变量的位置。在 f-string 中,直接在大括号内写入变量名即可。
除了常规的字符串格式化外,你还可以使用格式化指令来控制数据的显示方式,如指定小数位数、对齐方式等。具体的格式化指令可以参考 Python 官方文档。
阅读全文