This repository contains three Python scripts focused on character-level data processing and text analysis.
These tools were built to handle string manipulation and statistical counting without using high-level Python functions like .isdigit() or dictionary objects. Everything is implemented using manual loops and conditional logic.
- Password Strength Evaluator: Categorizes characters and labels password strength based on length and variety.
- Text Normalizer: Cleans paragraphs by converting to lowercase, replacing punctuation, and compressing multiple spaces into one.
- Linguistic Statistics: Counts vowels, consonants, and identifies the most frequent word lengths in a sentence.
Run the script using Python 3:
python logic_suite.py