python 中 print() 函数的三种格式化输出
时间: 2023-11-29 18:53:18 浏览: 79
在python中用print()输出多个格式化参数的方法
1. 使用占位符进行格式化输出:
```python
x = 10
y = 20
print("x = %d, y = %d" % (x, y))
```
输出结果为:
```
x = 10, y = 20
```
2. 使用 format() 方法进行格式化输出:
```python
x = 10
y = 20
print("x = {}, y = {}".format(x, y))
```
输出结果为:
```
x = 10, y = 20
```
3. 使用 f-string 进行格式化输出:
```python
x = 10
y = 20
print(f"x = {x}, y = {y}")
```
输出结果为:
```
x = 10, y = 20
```
阅读全文