python中读取和写入txt文件第二行的代码
时间: 2023-06-27 21:06:27 浏览: 94
python基础之②txt文本读取和写入
读取txt文件第二行的代码:
```python
with open('file.txt', 'r') as f:
lines = f.readlines()
second_line = lines[1] # 第二行的内容
```
写入txt文件第二行的代码:
```python
with open('file.txt', 'r') as f:
lines = f.readlines()
lines[1] = 'new content for second line\n' # 修改第二行的内容
with open('file.txt', 'w') as f:
f.writelines(lines) # 写入修改后的内容
```
需要注意的是,这里的行数是从0开始计数的。
阅读全文