Python中format格式化输出
时间: 2023-08-27 15:10:53 浏览: 91
在Python中,可以使用字符串的`format()`方法进行格式化输出。下面是一些常见的用法:
1. 位置参数:
```python
print('{} {} {}'.format('I', 'love', 'Python'))
# 输出:I love Python
```
2. 关键字参数:
```python
print('{name} is {age} years old.'.format(name='Tom', age=18))
# 输出:Tom is 18 years old.
```
3. 位置与关键字混合:
```python
print('{0} is {1} years old. {name} likes {language}'.format('Tom', 18, name='Jerry', language='Python'))
# 输出:Tom is 18 years old. Jerry likes Python
```
4. 精度控制:
```python
print('{:.2f}'.format(3.14159))
# 输出:3.14
```
5. 十进制、二进制、八进制、十六进制:
```python
print('{:d}'.format(42)) # 输出:42
print('{:b}'.format(42)) # 输出:101010
print('{:o}'.format(42)) # 输出:52
print('{:x}'.format(42)) # 输出:2a
```
6. 对齐方式:
```python
print('{:10}'.format('hello')) # 输出:hello
print('{:<10}'.format('hello')) # 输出:hello
print('{:>10}'.format('hello')) # 输出: hello
print('{:^10}'.format('hello')) # 输出: hello
```
更多用法可以参考[官方文档](https://docs.python.org/3/library/string.html#format-specification-mini-language)。
阅读全文