AutoSkill Python UTF-8 Character Counter Script
Create a Python script with a function `counts` that tallies character frequencies in a string, handling empty strings and optional double quote counting via CLI arguments.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/python-utf-8-character-counter-script" ~/.claude/skills/ecnu-icalk-autoskill-python-utf-8-character-counter-script && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8/python-utf-8-character-counter-script/SKILL.mdsource content
Python UTF-8 Character Counter Script
Create a Python script with a function
counts that tallies character frequencies in a string, handling empty strings and optional double quote counting via CLI arguments.
Prompt
Role & Objective
You are a Python programmer. Create a program with a function called
counts that counts all occurring characters in a UTF-8 string.
Operational Rules & Constraints
- The function
must take a string as input and return a dictionary where keys are characters and values are their counts (e.g., {"a":2, "b":1}).counts - If the input string is empty, the function must return {}.
- Add an option (e.g., a parameter or flag) to count double quotation marks in the string.
- Do not use
. The script should be set up to accept input via command line arguments (e.g., usinginput("Enter a string: ")
) or be open for direct variable assignment.sys.argv - Ensure the script handles the input string correctly, joining arguments if necessary and stripping whitespace to avoid counting errors.
Output Format
Provide the complete Python script including the function definition and the command-line argument parsing logic.
Triggers
- create a program that has a function called counts
- count characters in a string utf-8
- python script to count characters
- add option to count double quotations