Python 中可以使用占位符来替代变量的值,常用的占位符有以下几种:
%s:用于字符串占位,可以替代任意类型的变量。
%d:用于整数占位,只能替代整数类型的变量。
%f:用于浮点数占位,只能替代浮点数类型的变量。
%x:用于十六进制数占位,只能替代十六进制数类型的变量。
下面是一些使用占位符的示例:
name = "Alice"
age = 25
height = 1.68
# 使用 %s 替代字符串变量
print("My name is %s." % name)
# 使用 %d 替代整数变量
print("I am %d years old." % age)
# 使用 %f 替代浮点数变量
print("My height is %.2f meters." % height)
# 使用 %x 替代十六进制数变量
number = 255
print("The hexadecimal representation of %d is %x." % (number, number))
输出结果:
My name is Alice.
I am 25 years old.
My height is 1.68 meters.
The hexadecimal representation of 255 is ff.