python字符串格式化format
时间: 2023-04-28 17:06:05 浏览: 135
Python字符串格式化
Python 中的字符串格式化有多种方法,其中一种是使用字符串的 format() 方法。
这个方法允许我们在字符串中插入变量值。 例如:
```
name = "John"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
```
输出结果:My name is John and I am 30 years old.
我们也可以在 {} 中指定变量的位置
```
name = "John"
age = 30
print("My name is {1} and I am {0} years old.".format(age, name))
```
输出结果:My name is John and I am 30 years old.
阅读全文