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.