Python判断一个文件中的字符串是否存在于另外一个文件中
时间: 2024-09-30 17:06:43 浏览: 26
在Python中,你可以通过读取两个文件的内容并比较它们来判断一个文件中的字符串是否存在于另一个文件中。下面是一个简单的示例:
```python
def check_string_in_file(file_path_1, file_path_2, search_string):
# 读取第一个文件内容
with open(file_path_1, 'r') as file1:
file_content_1 = file1.read()
# 读取第二个文件内容
with open(file_path_2, 'r') as file2:
file_content_2 = file2.read()
# 检查搜索字符串是否在第二个文件中
if search_string in file_content_2:
return True
else:
return False
# 使用函数检查特定字符串
search_string = "your_search_string"
file_path_1 = "path_to_first_file.txt"
file_path_2 = "path_to_second_file.txt"
result = check_string_in_file(file_path_1, file_path_2, search_string)
if result:
print(f"'{search_string}'在'{file_path_2}'中找到")
else:
print(f"'{search_string}'未在'{file_path_2}'中找到")
阅读全文