用python编写一个程序随机文件访问test.txt,读取”World”这个单词。
时间: 2024-05-14 10:13:47 浏览: 67
用python实现文件的读取
好的,以下是可以实现这个功能的Python代码:
```python
import random
# 打开文件
with open('test.txt', 'r') as f:
# 读取文件中的所有行
lines = f.readlines()
# 遍历每一行,查找是否包含单词"World"
for line in random.sample(lines, len(lines)):
if "World" in line:
print(line)
break
```
这个程序会随机访问文件中的每一行,并查找是否包含单词"World"。如果找到了,就输出该行的内容。由于使用了`random.sample`函数,所以每次运行程序输出的结果可能会不同。
阅读全文