创建一个文本文件,然后将文件中的内容读出,并将大写字母转换为小写字母,然后重新写回文件
时间: 2024-03-10 13:51:23 浏览: 138
好的,我可以帮你解决这个问题。
首先,你需要创建一个文本文件,可以使用Python的open函数来创建。例如,以下代码将创建一个名为“example.txt”的文件:
```python
with open("example.txt", "w") as f:
f.write("Hello, WORLD!")
```
接下来,你需要读取文件中的内容并将大写字母转换为小写字母。可以使用Python的read方法来读取文件内容,然后使用lower方法将大写字母转换为小写字母。以下是示例代码:
```python
with open("example.txt", "r") as f:
content = f.read()
content = content.lower()
```
最后,你需要将新的内容写回文件中。可以使用Python的write方法来写入新内容。以下是示例代码:
```python
with open("example.txt", "w") as f:
f.write(content)
```
完整代码如下:
```python
with open("example.txt", "w") as f:
f.write("Hello, WORLD!")
with open("example.txt", "r") as f:
content = f.read()
content = content.lower()
with open("example.txt", "w") as f:
f.write(content)
```
运行这段代码后,你应该会在当前目录下看到一个名为“example.txt”的文件,其中的内容应该变为“hello, world!”
阅读全文