python 读取txt特定行
时间: 2023-10-02 16:11:31 浏览: 46
Python读取txt某几列绘图的方法
要读取txt文件中的特定行,可以使用以下代码:
```python
with open('file.txt', 'r') as file:
lines = file.readlines()
print(lines[2]) # 读取第三行(索引从0开始)
```
这将打印文件中的第三行。如果您要读取多个特定行,可以使用循环:
```python
with open('file.txt', 'r') as file:
lines = file.readlines()
for i in [2, 5, 10]: # 读取第三、六、十一行
print(lines[i])
```
这将打印文件中的第三、六和十一行。
阅读全文