format函数
时间: 2023-07-19 07:15:43 浏览: 77
format函数的用法
format函数是Python中用于格式化字符串的方法。它允许我们将变量插入到字符串中,并控制它们的格式。例如:
```
name = "Alice"
age = 25
print("My name is {} and I'm {} years old".format(name, age))
```
这将输出:"My name is Alice and I'm 25 years old"。在这个例子中,我们使用了一对大括号{}来表示我们要插入变量的位置,然后在format函数中传递了这些变量。我们也可以使用大括号内的数字来指定要插入的变量的顺序。例如:
```
print("My name is {1} and I'm {0} years old".format(age, name))
```
这将输出:"My name is Alice and I'm 25 years old",因为我们交换了变量的顺序。除了变量,format函数还提供了一些格式选项,例如对齐、填充等。更多关于format函数的详细信息可以查看Python官方文档。
阅读全文