在Python中,% 是用来进行取模运算的操作符,也可以用来进行字符串格式化。
取模运算: % 运算符可以用来计算两个数相除的余数,即取模运算。例如:10 % 3 的结果为1,因为10除以3的余数是1。
字符串格式化: % 运算符也可以用来进行字符串格式化操作。可以使用 %s、%d、%f 等格式化字符串中的占位符,然后通过 % 运算符来对占位符进行替换。例如:
name = "Alice"
age = 25
height = 165.5
print("My name is %s, I am %d years old, and my height is %.1f cm" % (name, age, height))
输出结果为:“My name is Alice, I am 25 years old, and my height is 165.5 cm”。在这个例子中,%s 代表字符串,%d 代表整数,%f 代表浮点数,并通过 % 运算符对这些占位符进行替换。