文件操作--“C语言学习笔记” 你可使用方法replace)将字符串中的特定单词都替换为另一个单词。下面是一个简单的示例,演示了如何将句子中的dog替换为'cat;>>> message = "I really like dogs.">>> message.replace('dog', 'cat')'I really like cats. 读取你刚创建的文件learning_python.txt中的每一行,将其中的Python都替换为另一门语言的名称,如C。将修改后的各行都打印到屏幕上。 输出: In C you can store as much information as you want. In C you can connect pieces of information. In C you can model real-world situations.
时间: 2023-12-14 10:37:15 浏览: 87
代码实现如下:
```python
with open('learning_python.txt') as file_object:
lines = file_object.readlines()
for line in lines:
new_line = line.replace('Python', 'C')
print(new_line.strip())
```
其中,`with open()`语句用于打开文件并创建文件对象,在代码块结束时自动关闭文件。`readlines()`方法读取文件的每一行并将其存储在列表中。然后,我们遍历每一行并使用`replace()`方法将其中的"Python"替换为"C",并使用`strip()`方法去除换行符。最后,我们将修改后的行打印到屏幕上。
阅读全文