在Python中,可以使用`format()`方法对字符串进行格式化输出。`format()`方法使用花括号 `{}` 作为占位符,可以在其中指定要插入的变量或值,并定义其格式。
以下是一些常用的格式化输出方法:
1. **基本用法**:使用`{}`作为占位符,通过`format()`方法传递要插入的值。
name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
# 输出: My name is Alice and I am 25 years old.
2. **位置参数**:可以使用位置参数指定要插入的值的顺序。
name = "Bob"
age = 30
print("My name is {0} and I am {1} years old.".format(name, age))
# 输出: My name is Bob and I am 30 years old.
3. **关键字参数**:可以使用关键字参数指定要插入的值的名称。
name = "Charlie"
age = 35
print("My name is {name} and I am {age} years old.".format(name=name, age=age))
# 输出: My name is Charlie and I am 35 years old.
4. **格式设置**:可以在占位符中使用冒号`:`来进行格式设置。
number = 3.14159
print("The value of pi is {:.2f}".format(number))
# 输出: The value of pi is 3.14
以上是`format()`方法的一些基本用法示例,还有其他更高级的格式化选项可供使用,如填充、对齐、宽度控制等。你可以参考Python官方文档中有关`format()`方法的详细说明来了解更多使用方式和选项。