python按行读写txt
时间: 2023-08-16 10:15:36 浏览: 117
Python中将变量按行写入txt文本中的方法
你可以使用 Python 中的内置函数来按行读取和写入文本文件。下面是一个示例代码:
按行读取文本文件:
```python
with open('file.txt', 'r') as file:
lines = file.readlines()
for line in lines:
print(line)
```
按行写入文本文件:
```python
lines = ['Line 1', 'Line 2', 'Line 3']
with open('file.txt', 'w') as file:
for line in lines:
file.write(line + '\n')
```
在上面的示例中,你可以将文件路径 `'file.txt'` 替换为你要读取或写入的实际文件路径。
阅读全文