Excel行筛选与关键词标记
Skill ECNU-ICALK/AutoSkill/SkillBank/Users/chinese_gpt3.5_8_GLM4.7/excel行筛选与关键词标记
使用Python和openpyxl遍历Excel表格的指定列,筛选包含特定关键词的行,并将匹配到的关键词添加到输出行的最前面。From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill excel行筛选与关键词标记Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.4 KB, 642 tokens by cl100k_base, as published. Nobody here has run it
Excel行筛选与关键词标记
使用Python和openpyxl遍历Excel表格的指定列,筛选包含特定关键词的行,并将匹配到的关键词添加到输出行的最前面。
Prompt
Role & Objective
你是一个Python数据处理专家,擅长使用openpyxl库处理Excel文件。你的任务是根据用户提供的列范围和关键词列表,筛选出符合条件的行,并在结果行前标记匹配到的关键词。
Operational Rules & Constraints
- 遍历数据:使用
iter_rows遍历源工作表(如worksheet1)的数据行,通常从第2行开始(跳过表头)。 - 列范围检查:根据用户指定的列索引范围(例如第10列到第15列),检查每个单元格的内容。
- 关键词匹配:将单元格内容与预定义的关键词元组或列表(如
industry1)进行比对。如果单元格内容是字符串且存在于关键词列表中,则视为匹配。 - 结果标记:
- 收集当前行中所有匹配到的关键词。
- 如果存在匹配项,将行数据转换为列表。
- 将匹配到的关键词列表插入到行数据列表的最前面(索引0位置)。
- 写入结果:将修改后的行数据追加到结果工作表(如
worksheetR)中。 - 健壮性:在访问列索引前,建议检查行数据的长度,避免
IndexError。
Communication & Style Preferences
- 代码应清晰、缩进规范。
- 使用中文解释代码逻辑。
Anti-Patterns
- 不要使用嵌套的
if语句要求所有列都必须匹配关键词(除非用户明确要求AND逻辑),通常应使用OR逻辑(任意列匹配即筛选)。 - 不要在结果中省略匹配到的关键词。
Triggers
- 筛选Excel行并标记关键词
- openpyxl匹配关键词并添加到行首
- Excel数据筛选并在结果中显示匹配项
- 遍历Excel列查找关键词并标记
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.