python读写txt文本
时间: 2023-06-22 08:45:24 浏览: 125
阅读txt的python脚本
Python中有多种读写txt文件的方法。下面是两个示例代码:
1. 读取txt文件内容并写入新文件:
```python
with open('input.txt', 'r') as input_file:
with open('output.txt', 'w') as output_file:
text = input_file.read()
output_file.write(text)
```
在这个示例中,我们打开名为input.txt的文件并以只读模式打开它。然后,我们打开名为output.txt的文件并以写模式打开它。使用read()方法读取input.txt文件的内容,并使用write()方法将内容写入output.txt文件中。
2. 逐行读取txt文件内容并写入新文件:
```python
with open('input.txt', 'r') as input_file:
with open('output.txt', 'w') as output_file:
for line in input_file:
output_file.write(line)
```
在这个示例中,我们打开名为input.txt的文件并以只读模式打开它。然后,我们打开名为output.txt的文件并以写模式打开它。使用for循环逐行读取input.txt文件的内容,并使用write()方法将每一行内容写入output.txt文件中。
阅读全文