python print 格式化输出
时间: 2023-09-27 21:09:08 浏览: 153
好的,关于 Python 中的格式化输出,常用的方法有两种:
1. 使用 % 格式化输出,例如:
```
name = 'John'
age = 32
print('My name is %s and I am %d years old.' % (name, age))
```
这会输出:My name is John and I am 32 years old.
%s 表示字符串类型,%d 表示整数类型。
2. 使用 format() 方法,例如:
```
name = 'John'
age = 32
print('My name is {} and I am {} years old.'.format(name, age))
```
这也会输出:My name is John and I am 32 years old.
其中 {} 表示占位符,format() 方法中的参数会按照位置依次填充占位符。
还有其他的格式化输出方法,不过这两种是比较常用的。希望能对你有所帮助。
阅读全文