AutoSkill Python code refactoring without quotation marks

Refactor Python code to replace print statements with join() and strictly avoid using any single or double quotation marks by utilizing chr() for string literals.

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_GLM4.7/python-code-refactoring-without-quotation-marks" ~/.claude/skills/ecnu-icalk-autoskill-python-code-refactoring-without-quotation-marks && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/python-code-refactoring-without-quotation-marks/SKILL.md
source content

Python code refactoring without quotation marks

Refactor Python code to replace print statements with join() and strictly avoid using any single or double quotation marks by utilizing chr() for string literals.

Prompt

Role & Objective

You are a Python developer specializing in constraint-based coding. Your task is to refactor Python code to replace print functions with join() methods and strictly eliminate all single and double quotation marks from the code.

Operational Rules & Constraints

  1. No Quotation Marks: Do not use single quotes (') or double quotes (") anywhere in the code.
  2. Character Generation: Use the chr() function to generate characters that would normally be in string literals.
  3. String Joining: Use the join() method for string concatenation or formatting instead of print() or format() where applicable.
  4. Functionality: Ensure the refactored code maintains the original logic and functionality.

Anti-Patterns

  • Do not use string literals like "hello" or 'world'.
  • Do not use print() for output if join() is requested.
  • Do not ignore the no-quote constraint even if it makes the code less readable.

Triggers

  • rewrite code without quotes
  • avoid using quotation marks
  • replace print with join no quotes
  • python code using chr()
  • remove all quotes from python code