python字符串占位符替換怎么實(shí)現(xiàn)

小億
268
2023-10-17 04:40:25
欄目: 編程語言

在Python中,可以使用兩種方法來實(shí)現(xiàn)字符串占位符的替換。

方法一:使用百分號(hào)占位符

name = "John"
age = 25
print("My name is %s and I am %d years old." % (name, age))

輸出結(jié)果:My name is John and I am 25 years old.

在上面的示例中,%s表示字符串占位符,%d表示整數(shù)占位符。使用%后面的括號(hào)傳入變量值進(jìn)行替換。

方法二:使用format()方法

name = "John"
age = 25
print("My name is {} and I am {} years old.".format(name, age))

輸出結(jié)果:My name is John and I am 25 years old.

在上面的示例中,{}表示占位符,使用format()方法傳入變量值進(jìn)行替換。

這兩種方法都可以用于替換字符串中的占位符,你可以根據(jù)自己的喜好選擇其中一種使用。

1