Python怎么格式化输出
时间: 2024-03-21 17:36:10 浏览: 142
python format 格式化输出方法
5星 · 资源好评率100%
在Python中,可以使用字符串的格式化方法来实现输出格式的控制。常用的格式化方法有两种:使用百分号(%)和使用format()函数。
1. 使用百分号(%)进行格式化输出:
- 字符串格式化:使用%s占位符表示字符串,将要输出的字符串放在%后面。
- 整数格式化:使用%d占位符表示整数,将要输出的整数放在%后面。
- 浮点数格式化:使用%f占位符表示浮点数,将要输出的浮点数放在%后面。
- 多个值格式化:可以使用元组或字典将多个值传递给格式化字符串。
示例代码如下:
```python
name = "Alice"
age = 25
height = 1.65
print("My name is %s, I'm %d years old, and my height is %.2f meters." % (name, age, height))
```
2. 使用format()函数进行格式化输出:
- 使用花括号({})作为占位符,通过format()函数传递要输出的值。
- 可以通过位置参数或关键字参数指定要替换的值。
示例代码如下:
```python
name = "Alice"
age = 25
height = 1.65
print("My name is {}, I'm {} years old, and my height is {:.2f} meters.".format(name, age, height))
```
阅读全文