Python雷行前加行号
时间: 2024-06-01 07:06:31 浏览: 157
Grideview 前面添加序列号
在 Python 中,可以使用循环和字符串格式化来为每一行添加行号,例如:
```
lines = ['hello', 'world', 'python']
for i, line in enumerate(lines, start=1):
print(f"{i}. {line}")
```
以上代码将输出:
```
1. hello
2. world
3. python
```
其中,`enumerate` 函数用于同时迭代序列的索引和值,`start` 参数指定起始索引。在字符串格式化时使用 `{i}` 表示行号,使用 `{line}` 表示行内容。
阅读全文