大家好呀~今天来聊聊如何用Python轻松搞定两个常见问题:一是替换`.txt`文件里的特定字符,二是将`.txt`文件转为`.py`文件!✨这两个任务其实并不难,只需几行代码就能搞定,快来一起学习吧!
首先,假设你有一个包含错误拼写的`.txt`文件,想批量替换某些字符。可以使用Python的`open()`函数读取文件内容,然后通过`.replace()`方法修改文本内容,最后写回文件。比如:
```python
with open('example.txt', 'r+', encoding='utf-8') as file:
content = file.read()
new_content = content.replace('old_word', 'new_word')
file.seek(0)
file.write(new_content)
```
接着,如果你需要将`.txt`文件改成`.py`格式,也很简单。只需重命名文件即可,或者用脚本自动处理大批量文件哦!
```python
import os
假设文件夹里有多个.txt文件
folder_path = './'
for filename in os.listdir(folder_path):
if filename.endswith('.txt'):
new_name = filename.replace('.txt', '.py')
os.rename(os.path.join(folder_path, filename),
os.path.join(folder_path, new_name))
```
是不是超方便?快试试吧!💡