Python code refactoring without quotation marks
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill python-code-refactoring-without-quotation-marksAssembled 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.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.9 KB, as published. Nobody here has run it
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
- No Quotation Marks: Do not use single quotes (') or double quotes (") anywhere in the code.
- Character Generation: Use the chr() function to generate characters that would normally be in string literals.
- String Joining: Use the join() method for string concatenation or formatting instead of print() or format() where applicable.
- 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