Python占位符%
时间: 2024-04-16 21:22:24 浏览: 134
浅谈python中的占位符
5星 · 资源好评率100%
Python中的占位符%是一种字符串格式化的方法,用于将变量的值插入到字符串中的特定位置。它的使用方式如下:
1. 字符串占位符:%s
使用%s作为占位符,可以将任意类型的变量转换为字符串并插入到字符串中。例如:
```
name = "Alice"
age = 25
print("My name is %s and I am %s years old." % (name, age))
```
输出:My name is Alice and I am 25 years old.
2. 整数占位符:%d
使用%d作为占位符,可以将整数类型的变量插入到字符串中。例如:
```
count = 10
print("There are %d apples." % count)
```
输出:There are 10 apples.
3. 浮点数占位符:%f
使用%f作为占位符,可以将浮点数类型的变量插入到字符串中。例如:
```
price = 9.99
print("The price is %.2f dollars." % price)
```
输出:The price is 9.99 dollars.
4. 其他格式化选项
- %s、%d、%f后面可以加上数字,表示最小字段宽度。例如:%10s表示字符串占位符宽度为10个字符。
- %f后面可以加上.精度,表示保留小数点后几位。例如:%.2f表示保留两位小数。
阅读全文