python使用字符串格式化方法format打印列表
时间: 2024-03-22 17:15:51 浏览: 114
浅谈Python 字符串格式化输出(format/printf)
可以使用字符串的 `format` 方法来打印列表。下面是一个例子:
```python
numbers = [1, 2, 3, 4, 5]
print("Here are the numbers: {}".format(numbers))
```
输出:
```
Here are the numbers: [1, 2, 3, 4, 5]
```
在这个例子中,我们使用了字符串的 `format` 方法,并在字符串中使用了一个占位符 `{}`。然后,我们将列表作为 `format` 方法的参数传递进去。在字符串被打印出来时,占位符就会被列表的值所替换。
阅读全文