phome_ecms_article_df[phome_ecms_article_df['newstext'].str.contains(file_name[:-5])]['title'],怎么判断如果搜索不到
时间: 2024-02-23 21:58:05 浏览: 72
excel数据导入帝国cms MySQL数据库phome_ecms_news导入excel
如果搜索不到,`phome_ecms_article_df[phome_ecms_article_df['newstext'].str.contains(file_name[:-5])]['title']` 将返回一个空的 DataFrame。因此,可以使用 `len()` 函数来判断 DataFrame 是否为空,如果为空则表示搜索不到。例如:
```
result_df = phome_ecms_article_df[phome_ecms_article_df['newstext'].str.contains(file_name[:-5])]['title']
if len(result_df) == 0:
print("搜索不到相关文章")
else:
# 处理搜索结果
```
阅读全文