在Python中,format()
函数用于格式化字符串。它是通过将参数插入到占位符{}
中来创建格式化字符串的。以下是format()
函数的使用方法:
name = "Alice"
age = 25
print("My name is {} and I'm {} years old.".format(name, age))
输出结果:My name is Alice and I'm 25 years old.
print("My name is {name} and I'm {age} years old.".format(name="Bob", age=30))
输出结果:My name is Bob and I'm 30 years old.
print("My name is {0} and I'm {1} years old.".format("Charlie", 35))
输出结果:My name is Charlie and I'm 35 years old.
pi = 3.14159265359
print("The value of pi is approximately {:.2f}.".format(pi))
输出结果:The value of pi is approximately 3.14.
在上述示例中,{}
用作占位符,它们可以包含位置、关键字或索引。:
后面可以指定格式限定符,如.2f
表示浮点数保留两位小数。
此外,还可以使用更多高级的格式化选项,如填充字符、对齐等。完整的格式化语法可以参考Python官方文档。