python 字符串格式化
时间: 2023-07-24 07:38:15 浏览: 101
Python 字符串格式化是指将一个字符串中的某些占位符用具体的值替换成一个新的字符串。Python 字符串格式化有多种方式,其中常用的方式为使用百分号(%)和 format() 方法。
使用百分号(%):
- %s:字符串
- %d:整数
- %f:浮点数
示例代码:
```
name = "John"
age = 25
print("My name is %s and my age is %d." % (name, age))
```
使用 format() 方法:
- {}:占位符,可以指定位置或使用默认顺序
- ::格式化符号,可以指定格式化方式
示例代码:
```
name = "John"
age = 25
print("My name is {} and my age is {}.".format(name, age))
```
阅读全文