在Python中,format()
方法用于格式化字符串。它是一个内置的字符串方法,可以通过占位符来指定字符串中的值。
格式化语法如下:
string.format(value1, value2, ...)
其中,string
是要进行格式化的字符串,value1
, value2
, … 是要插入到字符串中的值。
格式化字符串中的占位符使用一对大括号 {}
来表示,可以在占位符中指定值的格式。
以下是一些常见的格式化示例:
name = "Alice"
age = 20
print("My name is {} and I am {} years old".format(name, age))
输出:My name is Alice and I am 20 years old
value = 3.14159
print("The value of pi is {:.2f}".format(value))
输出:The value of pi is 3.14
name = "Bob"
age = 25
print("My name is {1} and I am {0} years old".format(age, name))
输出:My name is Bob and I am 25 years old
这只是format()
方法的一些基本用法示例,它还支持更多的功能,如对齐、填充、格式化数字、日期等。详细的用法可以参考Python官方文档。