python str.format
时间: 2023-08-14 10:09:08 浏览: 104
格式化输出-spring技术内幕(高清版)
`str.format()` 是一个用于格式化字符串的方法。它允许你通过在字符串中插入占位符来动态替换值。格式化字符串中的占位符用一对大括号 `{}` 表示,可以根据需要进行格式化。
以下是一些使用 `str.format()` 的示例:
1. 替换无序的占位符:
```python
name = "Alice"
age = 25
print("My name is {}, and I am {} years old.".format(name, age))
# 输出: My name is Alice, and I am 25 years old.
```
2. 替换有序的占位符:
```python
name = "Bob"
age = 30
print("My name is {0}, and I am {1} years old.".format(name, age))
# 输出: My name is Bob, and I am 30 years old.
```
3. 使用关键字参数替换占位符:
```python
name = "Charlie"
age = 35
print("My name is {name}, and I am {age} years old.".format(name=name, age=age))
# 输出: My name is Charlie, and I am 35 years old.
```
4. 格式化数字:
```python
pi = 3.14159
print("The value of pi is {:.2f}".format(pi))
# 输出: The value of pi is 3.14
```
5. 格式化日期和时间:
```python
import datetime
now = datetime.datetime.now()
print("Current date and time: {:%Y-%m-%d %H:%M}".format(now))
# 输出类似: Current date and time: 2022-01-01 12:34
```
这只是 `str.format()` 方法的一些基本用法,你还可以通过指定格式规范、填充字符等来进行更高级的格式化。请参考 Python 文档中关于 `str.format()` 的更多内容以了解更多用法。
阅读全文