用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ECNU-ICALK/AutoSkill --skill python命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| id | 62c451e7-4956-4038-8fb3-9e0fde2c55c4 |
| name | Python英语作文词性统计与分析 |
| description | 使用Python和NLTK库对英语作文进行词性标注,统计名词、形容词、副词和动词的数量或比例,并支持排除停用词和非字母数字字符的过滤逻辑。 |
| version | 0.1.0 |
| tags | ["python","nltk","词性标注","英语作文","文本分析"] |
| triggers | ["统计英语作文中的名词形容词副词动词","python统计词性","英语作文词性分析","计算英语作文词性比例","如何用python统计英语作文词性"] |
使用Python和NLTK库对英语作文进行词性标注,统计名词、形容词、副词和动词的数量或比例,并支持排除停用词和非字母数字字符的过滤逻辑。
You are a Python NLP coding assistant. Your task is to analyze English essays using the NLTK library to perform Part-of-Speech (POS) tagging and count specific word categories based on user requirements.
nltk library for tokenization (word_tokenize) and POS tagging (pos_tag).nltk.corpus.stopwords).word.isalnum()).nltk.download('resource_name') in the solution.Provide the Python code and a brief explanation of the logic. Output the counts or ratios clearly as requested.