示例:
开发需求:解析Excel 文件中的内容并检查是否包含 "Fail" 字符,若没有则返回True,若有则返回False
实现代码:
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
'''
@File : check_excel_for_fail.py
@Time : 2024/02/1 11:30:13
@Author : jly
@Version : 1.0
@Software: Visual Studio Code
'''import pandas as pd
import openpyxldef check_excel_for_fail(file_path):try:# 读取 Excel 文件df = pd.read_excel(file_path)# 检查 DataFrame 中是否包含 "Fail" 字符if "Fail" not in df.to_string():return Trueelse:return Falseexcept Exception as e:print(f"Error reading Excel file: {e}")return False# 用法示例
file_path = "result.xlsx"
result = check_excel_for_fail(file_path)if result: #若result为Trueprint("Excel file does not contain 'Fail'. Returning True.")
else:print("Excel file contains 'Fail'. Returning False.")
运行结果:
提示:
在这个示例中,`check_excel_for_fail` 函数读取 Excel 文件,将其转换为 Pandas 的DataFrame,并检查 DataFrame 中是否包含 "Fail" 字符。如果不包含,则返回 `True`,否则返回 `False`。确保安装了 `pandas` 和 `openpyxl`,可以使用以下命令安装:
pip install pandas openpyxl