Python 中 format
时间: 2024-03-06 20:20:59 浏览: 61
python中format使用
format() 是 Python 中用于格式化字符串的函数。该函数使用花括号 `{}` 作为占位符,可以将变量的值插入到字符串中。以下是一个简单的示例:
```python
name = "Alice"
age = 28
print("My name is {} and I'm {} years old.".format(name, age))
```
输出:
```python
My name is Alice and I'm 28 years old.
```
在这个示例中,`{}` 是占位符,分别表示字符串中要插入的变量。`format()` 函数将依次传递这些变量,并将它们插入到字符串中对应的占位符位置。
除了简单的变量插入之外,`format()` 函数还支持更多的格式化选项,例如指定字符串的精度、数字的进制、日期格式等。以下是一些示例:
```python
# 指定数字的精度
pi = 3.14159
print("Pi is {:.2f}".format(pi)) # 输出 "Pi is 3.14"
# 指定整数的进制
number = 42
print("The answer is {:x}".format(number)) # 输出 "The answer is 2a"
# 指定日期格式
from datetime import datetime
now = datetime.now()
print("Today is {:%Y-%m-%d}".format(now)) # 输出 "Today is 2021-06-24"
```
在这些示例中,`{}` 中的冒号后面跟着格式化选项,用于指定变量的格式。这些选项可以根据需要进行调整,以满足不同的需求。
阅读全文