format在python遍历列表或者字典输出
时间: 2023-08-11 22:16:23 浏览: 86
在 Python 中,可以使用 `format` 方法来格式化字符串,并且可以在其中使用 `{}` 占位符来插入变量。下面是遍历列表或字典并输出的示例:
- 遍历列表并输出
```python
my_list = [1, 2, 3, 'a', 'b', 'c']
for item in my_list:
print('Item: {}'.format(item))
```
输出结果:
```
Item: 1
Item: 2
Item: 3
Item: a
Item: b
Item: c
```
- 遍历字典并输出
```python
my_dict = {'name': 'Alice', 'age': 25, 'gender': 'female'}
for key, value in my_dict.items():
print('{}: {}'.format(key, value))
```
输出结果:
```
name: Alice
age: 25
gender: female
```
在上述示例中,`{}` 占位符会被 `format` 方法替换为相应的变量。`format` 方法还支持更多高级的用法,如指定变量的类型、对齐方式等,具体可以参考 Python 官方文档。
阅读全文