输入一个字符串,将其写入一个文本文件,将文件命名为student.txt,输入一个字符串,统计该字符串在文件student.txt中出现的次数。读取student.txt中的内容,将其按相反的顺序写入另一个文本文件。
时间: 2024-03-15 12:43:51 浏览: 83
统计给定字符串在文本中出现的次数.c
5星 · 资源好评率100%
好的,我明白了。以下是代码实现:
写入字符串到文件student.txt:
```python
content = input("请输入要写入文件的字符串:")
with open("student.txt", "w") as file:
file.write(content)
```
统计字符串在文件student.txt中出现的次数:
```python
target_str = input("请输入要统计的字符串:")
count = 0
with open("student.txt", "r") as file:
for line in file:
count += line.count(target_str)
print("字符串'{}'在文件student.txt中出现了{}次".format(target_str, count))
```
将文件student.txt中的内容按相反的顺序写入另一个文本文件:
```python
with open("student.txt", "r") as file:
content = file.read()
with open("reverse_student.txt", "w") as file:
file.write(content[::-1])
```
注意,代码中的路径可能需要根据实际情况修改。
阅读全文